Stencyl 2.0.0 works fine with the old starting script:
#!/bin/bash
java -Xms64m -Xmx384m -Djava.library.path=./lib -jar ./sw.jar
But, don't work's with the new script:
#!/bin/bash
./runtimes/jre-linux/bin/java -Xms64m -Xmx1024m -Djava.library.path=./lib -jar ./sw.jar
Is there any way you can make it work with some variation of the new script? It's really important that the bundled JRE be used, rather than the user-installed one.
For example...
../runtimes/jre-linux/bin/java -Xms64m -Xmx1024m -Djava.library.path=./lib -jar ./sw.jar
runtimes/jre-linux/bin/java -Xms64m -Xmx1024m -Djava.library.path=./lib -jar ./sw.jar
../runtimes/jre-linux/bin/java -Djava.library.path=./lib -jar ./sw.jar
runtimes/jre-linux/bin/java -Djava.library.path=./lib -jar ./sw.jar
etc.
If nothing works, could you cd down to runtimes/jre-linux/bin/ and simply run "java" and see if that works? If not, then it's an issue where the JVM we provide isn't working on all flavors of Linux.