diff options
author | Sven Gothel <[email protected]> | 2023-11-26 10:01:48 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-11-26 10:01:48 +0100 |
commit | 4bf432acdac37f570226affc2a341a61a1b6d16a (patch) | |
tree | 0cbd42f1089e7a4fa50134247ad04e3d4c3ffb9d /src/com/jogamp | |
parent | 791eb1b2ae3001f04d59a61f634161e21d96ef6d (diff) |
Bug 1479 - NativeLibrary: Add getNativeLibraryPath() returning actual native library path, support throughout DynamicLibraryBundle[Info]HEADmaster
Diffstat (limited to 'src/com/jogamp')
-rw-r--r-- | src/com/jogamp/opencl/llb/impl/CLDynamicLibraryBundleInfo.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/jogamp/opencl/llb/impl/CLDynamicLibraryBundleInfo.java b/src/com/jogamp/opencl/llb/impl/CLDynamicLibraryBundleInfo.java index 39365a23..49f6e816 100644 --- a/src/com/jogamp/opencl/llb/impl/CLDynamicLibraryBundleInfo.java +++ b/src/com/jogamp/opencl/llb/impl/CLDynamicLibraryBundleInfo.java @@ -47,6 +47,7 @@ public final class CLDynamicLibraryBundleInfo implements DynamicLibraryBundleInf static { AccessController.doPrivileged(new PrivilegedAction<Object>() { + @Override public Object run() { Platform.initSingleton(); @@ -135,6 +136,8 @@ public final class CLDynamicLibraryBundleInfo implements DynamicLibraryBundleInf return libNamesList; } + @Override + public List<String> getSymbolForToolLibPath() { return Arrays.asList("clCreateContext"); } @Override public final List<String> getToolGetProcAddressFuncNameList() { |