Re: JOGL 2.0 (OpenGL/OpenGL-ES) backend for LibGDX
Posted by Xerxes Rånby on Mar 04, 2013; 10:59am
URL: https://forum.jogamp.org/JOGL-2-0-OpenGL-OpenGL-ES-backend-for-LibGDX-tp4027689p4028460.html
You need to pass one -D for each system properties that you want to set, its wrong -D usage to put several properties into one line.
change:
java -Djava.library.path=.:joal.openal.lib=system -jar test1.jar
to:
java -Djava.library.path=. -Djoal.openal.lib=system -jar test1.jar
Please note that JOGL itself do not require you to set the java.library.path at all.
The crash was caused by loading the armv7 openal on your armv6 machine, and because of the incorrect -D usage java did not set the -Djoal.openal.lib=system propertie.