Hi folks,
I’m trying to make my jogl application as self-contained as possible, containing libjogl.so for both x86 and x86_64, and the classes from jogl.jar.
Initially I tried to use a single jogl.jar for both platforms (copying the .class files into my jar), but on the “foreign” platform, jogl very quickly fails. It seems that the jar file might not be architecture independent? Could this be due to struct parsing?
In any event, my main question is: do I need to include jar files for each platform? (If so, is there a good way to extract the platform-specific jogl.jar from my app’s jar and dynamically add it to the classpath?)
-Ed