summaryrefslogtreecommitdiffstats
path: root/java-dbg-noawt.sh
diff options
context:
space:
mode:
Diffstat (limited to 'java-dbg-noawt.sh')
-rwxr-xr-xjava-dbg-noawt.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/java-dbg-noawt.sh b/java-dbg-noawt.sh
new file mode 100755
index 0000000..2282348
--- /dev/null
+++ b/java-dbg-noawt.sh
@@ -0,0 +1,24 @@
+#! /bin/sh
+
+MOSX=0
+uname -a | grep -i Darwin && MOSX=1
+
+CPOK=0
+echo $CLASSPATH | grep jogl && CPOK=1
+
+if [ $CPOK -eq 0 ] ; then
+ # Only valid for autobuild .. otherwise run manually with build-dir
+ . ./setenv-jogl.sh JOGL_ALL
+ echo $CLASSPATH | grep jogl && CPOK=1
+fi
+if [ $CPOK -eq 0 ] ; then
+ echo No JOGL in CLASSPATH
+else
+ # D_ARGS="-Dgluegen.debug.ProcAddressHelper=true -Dgluegen.debug.NativeLibrary=true -Dnativewindow.debug=all -Djogl.debug=all -Dnewt.debug=all"
+ D_ARGS="-Dnativewindow.debug=all -Djogl.debug=all -Dnewt.debug=all -Djogl.debug.GLSLState"
+ if [ $MOSX -eq 1 ] ; then
+ X_ARGS="-XstartOnFirstThread"
+ fi
+
+ java $X_ARGS -Djava.awt.headless=true $D_ARGS $* 2>&1 | tee java-dbg-noawt.log
+fi