diff options
author | Xerxes Rånby <[email protected]> | 2016-12-12 09:26:36 +0100 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2016-12-12 09:26:36 +0100 |
commit | 0ce27b5d184ea23557a52443d239d405e34288f5 (patch) | |
tree | 90518ad500d62ba7818e2cb49f0efc2f3b3e6936 /make/scripts/make.joal.all.linux-aarch64-cross.sh | |
parent | a22129865cfaa40b4f3f4cee519dac36f5d0a8c7 (diff) |
Bug 1295: Add linux-aarch64 GNU/Linux AArch64 supportrc
make/scripts/make.joal.all.linux-aarch64-cross.sh:
New crosscompile script
Diffstat (limited to 'make/scripts/make.joal.all.linux-aarch64-cross.sh')
-rwxr-xr-x | make/scripts/make.joal.all.linux-aarch64-cross.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/make/scripts/make.joal.all.linux-aarch64-cross.sh b/make/scripts/make.joal.all.linux-aarch64-cross.sh new file mode 100755 index 0000000..d271371 --- /dev/null +++ b/make/scripts/make.joal.all.linux-aarch64-cross.sh @@ -0,0 +1,39 @@ +#! /bin/sh + +SDIR=`dirname $0` + +if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then + . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh +fi + +# aarch64-linux-gnueabi == aarch64 triplet +PATH=`pwd`/../../gluegen/make/lib/toolchain/aarch64-linux-gnueabi/bin:$PATH +export PATH + +# -Dc.compiler.debug=true +# -Dgluegen.cpptasks.detected.os=true \ +# -DisUnix=true \ +# -DisLinux=true \ +# -DisLinuxARM64=true \ +# -DisX11=true \ + +export TARGET_PLATFORM_ROOT=/opt-linux-arm64 +export TARGET_PLATFORM_LIBS=$TARGET_PLATFORM_ROOT/usr/lib +export TARGET_JAVA_LIBS=$TARGET_PLATFORM_ROOT/jre/lib/aarch64 + +export GLUEGEN_CPPTASKS_FILE="../../gluegen/make/lib/gluegen-cpptasks-linux-aarch64.xml" + +#export JUNIT_DISABLED="true" +#export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode" + +export SOURCE_LEVEL=1.6 +export TARGET_LEVEL=1.6 +export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar + +#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" +export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" + +ant \ + -Drootrel.build=build-linux-aarch64 \ + $* 2>&1 | tee make.gluegen.all.linux-aarch64-cross.log + |