diff options
author | Sven Gothel <[email protected]> | 2019-12-26 18:24:28 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-12-26 18:24:28 +0100 |
commit | 22b41b9a232527d8c2b2a2b03e03005273529df7 (patch) | |
tree | 1d5cd2c19c56dbc0d6a96cdfba61c269cf19781b /make/scripts/make.jocl.all.linux-x86_64.sh | |
parent | 855fc43060fe788ce32b2daa396f6fe236c31ba8 (diff) |
Bug 1417: Android: Adapt to GlueGen's 'aapt.signed' d8 usage and use manifest SDK API [min=21, target=28]
Also fix all make/scripts using Java11 as 'host compiler' and Java8 as target-rt-jar,
as well as adapt to GlueGen's new Android 'setenv-android-tools.sh' for new SDK/NDK as of 2019-12-10.
Diffstat (limited to 'make/scripts/make.jocl.all.linux-x86_64.sh')
-rwxr-xr-x | make/scripts/make.jocl.all.linux-x86_64.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/make/scripts/make.jocl.all.linux-x86_64.sh b/make/scripts/make.jocl.all.linux-x86_64.sh index 460af803..5fee3199 100755 --- a/make/scripts/make.jocl.all.linux-x86_64.sh +++ b/make/scripts/make.jocl.all.linux-x86_64.sh @@ -6,16 +6,20 @@ if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh ] ; then . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86_64.sh fi +LOGF=make.jocl.all.linux-x86_64.log +rm -f $LOGF + # -Dbuild.archiveon=true \ -export SOURCE_LEVEL=1.6 -export TARGET_LEVEL=1.6 -export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar +export SOURCE_LEVEL=1.8 +export TARGET_LEVEL=1.8 +export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar #export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" -BUILD_ARCHIVE=true \ +# BUILD_ARCHIVE=true \ ant \ -Drootrel.build=build-x86_64 \ - $* 2>&1 | tee make.jocl.all.linux-x86_64.log + $* 2>&1 | tee -a $LOGF + |