Open-Source JPMS / Panama Projects?
Ty Young
youngty1997 at gmail.com
Thu Mar 18 01:40:04 UTC 2021
In order to use FMA with modules you just need to add:
requires jdk.incubator.foreign;
and for VM arguments add:
--add-modules=jdk.incubator.foreign
-Dforeign.restricted=permit
If you want a slightly less-standard example, here is some ctype
bindings I made:
https://gist.github.com/BlueGoliath/cb5ac2584f4fe0d8462fc619876feecb
It takes advantage of the fact that all function recipes are the same by
making use of a not too long ago added feature that allows for virtual
function MethodHandle support. As a result, the bindings are far smaller
than it otherwise would be normally.
My main project revolving Panama is a fairly nice cross-platform Nvidia
GPU monitoring and management utility using Java, JavaFX, Panama, and
NVML however it isn't Open Source.
Hope it helps.
On 3/17/21 5:24 PM, leerho wrote:
> Hi,
> Is anyone aware of an open-source project that has actually migrated their
> code from Java < 9 to a multi module JPMS? Especially one that has had to
> deal with access to JVM internals like *Unsafe*. If the project is also
> implementing the Panama FMA that would be an extra bonus! :)
>
> It would be helpful to see a more complete example than the toy examples
> given in most tutorials.
>
> Thanks,
> Lee.
More information about the panama-dev
mailing list