java.lang.UnsatisfiedLinkError: /Users/hein/Downloads/jmagick-linux-6.4.0-Q32/libJMagick-6.4.0.so: dlopen(/Users/hein/Downloads/jmagick-linux-6.4.0-Q32/libJMagick-6.4.0.so, 1): no suitable image found. Did find: /Users/hein/Downloads/jmagick-linux-6.4.0-Q32/libJMagick-6.4.0.so: unknown file type, first eight bytes: 0x7F 0x45 0x4C 0x46 0x01 0x01 0x01 0x00
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
- Expert tip
When installing an APK, it automatically extracts the libraries of the right arch type and has them available for System.loadLibrary. But, if you're trying to load a non-standard library, the installer won't know your app has 32bit native code.
This is a sub-class of the LinkageError class and indicates that the JVM cannot find an appropriate native-language definition of a method declared as native. Compile a 64-bit version of your .dylib file.
Solutions on the web
via Stack Overflow by hein
, 1 year agovia Stack Overflow by MrROY
, 1 year agovia GitHub by rauizab
, 1 year agovia Google Groups by sumation, 2 years ago
via Stack Overflow by Shreyas K C
, 1 year agovia Oracle Community by spilgrim, 1 year ago
java.lang.UnsatisfiedLinkError: /Users/hein/Downloads/jmagick-linux-6.4.0-Q32/libJMagick-6.4.0.so: dlopen(/Users/hein/Downloads/jmagick-linux-6.4.0-Q32/libJMagick-6.4.0.so, 1): no suitable image found. Did find: /Users/hein/Downloads/jmagick-linux-6.4.0-Q32/libJMagick-6.4.0.so: unknown file type, first eight bytes: 0x7F 0x45 0x4C 0x46 0x01 0x01 0x01 0x00
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824)
at java.lang.Runtime.load0(Runtime.java:809)
at java.lang.System.load(System.java:1086)
at edocs.EdocsModifier.main(EdocsModifier.java:11)