How to load customized native library?
tison
wander4096 at gmail.com
Wed Sep 27 06:49:51 UTC 2023
I'm using OpenJDK 21.
Previously, I used System.load or System.loadLibrary to load native library
said "opendal_java".
Now, with Linker.nativeLinker().defaultLookup(), the `find' result is empty
even if I call System.load property first.
I read the code and it seems the defaultLookup only always look
up syslookup lib only.
Thus, the only way I found to properly load customized native library is:
final SymbolLookup lookup =
SymbolLookup.libraryLookup(absolutePathToNativeLib), arena);
Do we have something like System.loadLibrary, or respect the effect of
System.load/System.loadLibrary?
Best,
tison.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/panama-dev/attachments/20230927/d72c3e25/attachment.htm>
More information about the panama-dev
mailing list