diff options
author | Wade Walker <[email protected]> | 2018-12-29 10:15:23 -0600 |
---|---|---|
committer | Wade Walker <[email protected]> | 2018-12-29 10:15:23 -0600 |
commit | 2ad07a7e3e8cf1fc29fe7cbb3256c4c2cda27d02 (patch) | |
tree | b170ffe9b5cc0d31f774e5bc66f330bcd6c6d318 | |
parent | 39624f4be4587c41a1bfc6f7f4627d06c224f869 (diff) | |
parent | bc915ab43007b827f021b18e84a5d7645f7f4185 (diff) |
Merge branch 'master' of https://github.com/JogAmp/jocl
-rwxr-xr-x | make/scripts/make.jocl.all.linux-aarch64-cross.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/make/scripts/make.jocl.all.linux-aarch64-cross.sh b/make/scripts/make.jocl.all.linux-aarch64-cross.sh new file mode 100755 index 00000000..a3551634 --- /dev/null +++ b/make/scripts/make.jocl.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.jocl.all.linux-aarch64-cross.log + |