diff options
author | Sven Gothel <[email protected]> | 2012-08-16 14:47:16 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-08-16 14:47:16 +0200 |
commit | 3732d0162051ffe56af34ba345b59c15bfc6f552 (patch) | |
tree | 39bd013c4985dcf556194a90882c9afd30db9791 /make/scripts/make.jogl.all.linux-armv6hf.sh | |
parent | 1272bf884ce32bb723c48999ea6598f58b65f914 (diff) |
Adapt to GlueGen ARM Build Changes 422d7a5eb53fca6642ebf4e8910d8b0311bb2597
Note: Patch set not clean since build*xml files contain 'NEWT Broadcom' driver changes of upcoming commit
due to pervious uncommitted work. Will be fixed w/ next commit.
Diffstat (limited to 'make/scripts/make.jogl.all.linux-armv6hf.sh')
-rwxr-xr-x | make/scripts/make.jogl.all.linux-armv6hf.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/make/scripts/make.jogl.all.linux-armv6hf.sh b/make/scripts/make.jogl.all.linux-armv6hf.sh new file mode 100755 index 000000000..7d9480f26 --- /dev/null +++ b/make/scripts/make.jogl.all.linux-armv6hf.sh @@ -0,0 +1,27 @@ +#! /bin/sh + +# arm-linux-gnueabihf == armhf triplet +PATH=`pwd`/../../gluegen/make/lib/linux/arm-linux-gnueabihf/bin:$PATH +export PATH + +# -Dc.compiler.debug=true +# -Dgluegen.cpptasks.detected.os=true \ +# -DisUnix=true \ +# -DisLinux=true \ +# -DisLinuxARMv6=true \ +# -DisX11=false \ + +export TARGET_PLATFORM_ROOT=/ +export TARGET_PLATFORM_LIBS=/usr/lib/arm-linux-gnueabihf +export TARGET_JAVA_LIBS=/usr/lib/jvm/java-6-openjdk-armhf/jre/lib/arm + +export GLUEGEN_CPPTASKS_FILE="../../gluegen/make/lib/gluegen-cpptasks-linux-armv6hf.xml" + +ant \ + -Drootrel.build=build-linux-armv6hf \ + -Dsetup.addNativeKD=true \ + -Dsetup.addNativeOpenMAX=true \ + -Dsetup.addNativeBroadcom=true \ + -Djunit.run.arg0="-Dnewt.test.Screen.disableScreenMode" \ + $* 2>&1 | tee make.jogl.all.linux-armv6hf.log + |