diff options
author | Sven Gothel <[email protected]> | 2015-07-13 13:30:41 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-07-13 13:30:41 +0200 |
commit | 25c8ae691443027f02ffeafe92b15f2ba466d529 (patch) | |
tree | c7d7f1f3b783b57974d256a5e52a74213aa1d215 /make/scripts/make.joal.all.android-aarch64-cross.sh | |
parent | 737c9b06c1d244ee7693f29851d07745b731b0c5 (diff) |
Fix Android ARM64 Support
- See openal-soft commit 2e8f6a1704dfa0048dbfc2f826847a4aaea3cbe8
- export HOST_ARCH
Diffstat (limited to 'make/scripts/make.joal.all.android-aarch64-cross.sh')
-rwxr-xr-x | make/scripts/make.joal.all.android-aarch64-cross.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/scripts/make.joal.all.android-aarch64-cross.sh b/make/scripts/make.joal.all.android-aarch64-cross.sh index 76a3200..6aa2657 100755 --- a/make/scripts/make.joal.all.android-aarch64-cross.sh +++ b/make/scripts/make.joal.all.android-aarch64-cross.sh @@ -33,7 +33,7 @@ export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar #export GCC_VERSION=4.4.3 export GCC_VERSION=4.9 -HOST_ARCH=linux-x86_64 +export HOST_ARCH=linux-x86_64 export TARGET_TRIPLE=aarch64-linux-android export NDK_TOOLCHAIN_ROOT=$NDK_ROOT/toolchains/${TARGET_TRIPLE}-${GCC_VERSION}/prebuilt/${HOST_ARCH} @@ -54,5 +54,5 @@ export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" # BUILD_ARCHIVE=true \ ant \ -Drootrel.build=build-android-aarch64 \ - $* 2>&1 | tee -a make.joal-aarch64-cross.log + $* 2>&1 | tee make.joal-aarch64-cross.log |