summaryrefslogtreecommitdiffstats
path: root/cvm-run-newt.sh
blob: da26de1aad286f444191ff97822d27e07e0616c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh

CVM=$1
shift

BUILD_SUBDIR=$1
shift

if [ ! -x "$CVM" -o -z "$BUILD_SUBDIR" ] ; then
    echo "Usage $0 CVM-Binary BUILD_SUB_PATH [-cpu <arch>] Main-Class"
    echo "e.g. $0 ../CVM/bin/cvm build-x86 -cpu x86 test"
    exit 1
fi

X_FLAGS=
if [ "$1" = "-cpu" ] ; then
    shift
    X_FLAGS="-Dos.arch=$1"
    shift
fi

$CVM $X_FLAGS -Djava.awt.headless=true -Dsun.boot.library.path=../jogl/$BUILD_SUBDIR/lib -Xbootclasspath/a:../gluegen/$BUILD_SUBDIR/gluegen-rt-cdc.jar -Xbootclasspath/a:../jogl/$BUILD_SUBDIR/nativewindow/nativewindow.all.cdc.jar -Xbootclasspath/a:../jogl/$BUILD_SUBDIR/jogl/jogl.all.cdc.jar -Xbootclasspath/a:../jogl/$BUILD_SUBDIR/newt/newt.all.cdc.jar -Xbootclasspath/a:$BUILD_SUBDIR/jogl-demos.jar com.jogamp.javafx.newt.util.MainThread $* 2>&1 | tee cvm-run-newt.log