summaryrefslogtreecommitdiffstats
path: root/java-dbg-noawt.sh
blob: 5f4a7c10c6e29721c056a898b0d5552ff7ad2506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! /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="-Djogl.verbose=true -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"
    D_ARGS="-Dnewt.test.EDTMainThread=true -Dnewt.debug=all"
    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