diff options
author | Sven Gothel <[email protected]> | 2019-08-19 06:27:34 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-08-19 06:27:34 +0200 |
commit | c155194545769b9dada9408116b3f72aa53f583f (patch) | |
tree | 08bb67285fc571c45bd0dd5b080f11a07493471a /make/scripts/make.joal.all.macosx-java6.sh | |
parent | c84e8e221dd7ba2f8608afcb0efee2276a2b2011 (diff) |
Bug 1363: Java 11: Validated build on Java11
Note: On Windows w/ CMake 3.15.2 and MingW64 8.1.0
openal-soft still doesn't build through yet (no regression, didn't build before).
I added the <arg line="-G 'MinGW Makefiles'"/> and had to
replace \cygwin\bin\sh.exe with a symbolic link to \cygwin\bin\bash.exe
to make it pass .. still WIP.
Compilation setup also claimed DSOUND headers were n/a.
Diffstat (limited to 'make/scripts/make.joal.all.macosx-java6.sh')
-rwxr-xr-x | make/scripts/make.joal.all.macosx-java6.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/make/scripts/make.joal.all.macosx-java6.sh b/make/scripts/make.joal.all.macosx-java6.sh deleted file mode 100755 index f30856f..0000000 --- a/make/scripts/make.joal.all.macosx-java6.sh +++ /dev/null @@ -1,30 +0,0 @@ -#! /bin/sh - -if [ -e /opt-share/etc/profile.ant ] ; then - . /opt-share/etc/profile.ant -fi - -# -Dc.compiler.debug=true -# -# -Dtarget.sourcelevel=1.6 \ -# -Dtarget.targetlevel=1.6 \ -# -Dtarget.rt.jar=/opt-share/jre1.6.0_30/lib/rt.jar \ - -# Force OSX SDK 10.6, if desired -# export SDKROOT=macosx10.6 - -JAVA_HOME=`/usr/libexec/java_home -version 1.6` -PATH=$JAVA_HOME/bin:$PATH -export JAVA_HOME PATH - -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" - -#BUILD_ARCHIVE=true \ -ant \ - -Drootrel.build=build-macosx-java6 \ - $* 2>&1 | tee make.joal.all.macosx-java6.log |