Re: UnsatisfiedLinkError
Posted by
Wade Walker on
Jul 14, 2014; 8:21pm
URL: https://forum.jogamp.org/UnsatisfiedLinkError-tp4032563p4032568.html
The NoSuchMethodError sounds like there's a version mismatch between the JAR files that make up JOGL. The gluegen-rt.jar, jogl-all.jar, gluegen-rt-natives-*-*.jar and jogl-all-natives-*-*.jar files all must be from the same JOGL version, or there will be problems

The gluegen-rt.jar and jogl-all.jar files must be in your classpath, then JOGL looks in the same directory at runtime to find the gluegen-rt-natives-*-*.jar and jogl-all-natives-*-*.jar files, which it unzips to a temp directory.
The JAR files should be the same on both Linux and Windows, it's only the natives files that differ. And since the native files are named different on each platform, there's no conflict, they can all coexist in the same directory.