diff options
author | Xerxes Rånby <[email protected]> | 2012-02-18 23:23:59 +0100 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2012-02-18 23:23:59 +0100 |
commit | dba6000389d9bcc8754262723d58f7c91cdd34ab (patch) | |
tree | fe0beb14f21d190a02dfd0becc20f82e200a51e5 /make/scripts | |
parent | 7bffdaff79e9344319abbe6003fcc26e08d2f937 (diff) |
Add make/scripts/make.jogl.all.linux-armv7.sh for native ARM-linux builds.
Signed-off-by: Xerxes Rånby <[email protected]>
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/make.jogl.all.linux-armv7.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/make/scripts/make.jogl.all.linux-armv7.sh b/make/scripts/make.jogl.all.linux-armv7.sh new file mode 100755 index 000000000..598ea98f8 --- /dev/null +++ b/make/scripts/make.jogl.all.linux-armv7.sh @@ -0,0 +1,28 @@ +#! /bin/sh + +PATH=`pwd`/../../gluegen/make/lib/linux/arm-linux-gnueabi/bin:$PATH +export PATH + +# -Dc.compiler.debug=true +# -Dgluegen.cpptasks.detected.os=true \ +# -DisUnix=true \ +# -DisLinux=true \ +# -DisLinuxARMv7=true \ +# -DisX11=false \ + +export TARGET_PLATFORM_LIBS=/usr/lib/arm-linux-gnueabi +export TARGET_JAVA_LIBS=/usr/lib/jvm/default-java/jre/lib/arm + +ant \ + -Drootrel.build=build-linux-armv7 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisLinux=true \ + -DisLinuxARMv7=true \ + -DisX11=true \ + \ + -Dsetup.addNativeKD=true \ + -Dsetup.addNativeOpenMAX=true \ + -Dsetup.addNativeBroadcomEGL=true \ + $* 2>&1 | tee make.jogl.all.linux-armv7-cross.log + |