Duncan McLean
Duncan McLean
I've got a project that can help working with Panama. Similar to JNA, you create an interface and the library can either build the class you need dynamically at run...
So far I've only been using the foreign API to go from Java to a C DLL. I did a very dirty test on callbacks comparing the foreign api to...
I updated the code to a) make it mainly about the callback, b) add a quick optimization for the method lookup. ### JNI ```Java public static int cb(int n, double...
I like the idea of a separate fork to target more recent JDK's. Getting the existing repo to build using Java 17 and use the foreign API was not a...
I finally got around to making a fork with Panama. Not all of the unit tests are passing, but I think most of the failures are pretty benign. [SQLite with...
The biggest issue I was having is that I had to split the tests into a separate sub project because maven (and JUnit?) were unhappy about there being a module-info...
I'm pretty certain I'm missing something - I don't use maven much. If I use JUnit 5.4.2 like this in my pom.xml then I can run tests via maven. ```xml...
Sorry about that. You'll need to set java_home to point to Java 17. I just uploaded the library required to test on Linux, so `mvn verify` will work on windows....
I've added a CI, and fixed the tests in Linux. I have not set up the CI to run against the most recent panama builds though. I still need to...