Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - douglaslyon

#1
Bugs / macos cannot load native libraries
November 18, 2017, 04:19:21 PM
 The macosx cannot load one of the native libraries. To illustrate this issue, I have written the following test program:
public static void main(String[] args) {
        System.load("/Users/lyon/attachments/foo/jpct/lib/lwjgl-2.9.1/native/macosx/liblwjgl.jnilib");
    }
Exception in thread "main" java.lang.NoSuchMethodError: getPointer
   at java.lang.ClassLoader$NativeLibrary.load(Native Method)
   at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1937)
   at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1822)
   at java.lang.Runtime.load0(Runtime.java:809)
   at java.lang.System.load(System.java:1086)
   at nativeLibs.NativeLibDetect.main(NativeLibDetect.java:87)
Are you depending on a dylib to be somewhere it isn't?
Is there a JNA approach to the problem?
Thanks!
- Doug