diff options
-rwxr-xr-x | make/scripts/make.jocl.all-host-linux.sh (renamed from make/scripts/make.jocl.all.sh) | 0 | ||||
-rwxr-xr-x | make/scripts/make.jocl.all-host-macos.sh | 16 | ||||
-rwxr-xr-x | make/scripts/make.jocl.all.ios.amd64.sh | 32 | ||||
-rwxr-xr-x | make/scripts/make.jocl.all.ios.arm64.sh | 32 |
4 files changed, 80 insertions, 0 deletions
diff --git a/make/scripts/make.jocl.all.sh b/make/scripts/make.jocl.all-host-linux.sh index 4e95117..4e95117 100755 --- a/make/scripts/make.jocl.all.sh +++ b/make/scripts/make.jocl.all-host-linux.sh diff --git a/make/scripts/make.jocl.all-host-macos.sh b/make/scripts/make.jocl.all-host-macos.sh new file mode 100755 index 0000000..11f2d3c --- /dev/null +++ b/make/scripts/make.jocl.all-host-macos.sh @@ -0,0 +1,16 @@ +#! /bin/sh + +SDIR=`dirname $0` + +$SDIR/make.jocl.all.macosx.sh && \ +$SDIR/make.jocl.all.ios.amd64.sh && \ +$SDIR/make.jocl.all.ios.arm64.sh + +# $SDIR/make.jocl.all.macosx.sh +# $SDIR/make.jocl.all.ios.amd64.sh +# $SDIR/make.jocl.all.ios.arm64.sh +# $SDIR/make.jocl.all.win32.bat +# $SDIR/make.jocl.all.win64.bat +# $SDIR/make.jocl.all.linux-ppc64le.sh +# $SDIR/make.jocl.all.linux-armv6hf.sh +# $SDIR/make.jocl.all.linux-aarch64.sh diff --git a/make/scripts/make.jocl.all.ios.amd64.sh b/make/scripts/make.jocl.all.ios.amd64.sh new file mode 100755 index 0000000..d8c964f --- /dev/null +++ b/make/scripts/make.jocl.all.ios.amd64.sh @@ -0,0 +1,32 @@ +#! /bin/sh + +if [ -e /usr/local/etc/profile.ant ] ; then + . /usr/local/etc/profile.ant +fi + +# -Dc.compiler.debug=true + +# Force OSX SDK 10.6, if desired +# export SDKROOT=macosx10.6 + +export SDKROOT=iphonesimulator13.2 +xcrun --show-sdk-path + +JAVA_HOME=`/usr/libexec/java_home -version 11` +PATH=$JAVA_HOME/bin:$PATH +export JAVA_HOME PATH +which java +java -version + +export SOURCE_LEVEL=1.8 +export TARGET_LEVEL=1.8 +export TARGET_RT_JAR=/usr/local/jre1.8.0_212/lib/rt.jar + +export GLUEGEN_CPPTASKS_FILE=make/lib/gluegen-cpptasks-ios-amd64.xml + +#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" +export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" + +ant \ + -Drootrel.build=build-ios-amd64 \ + $* 2>&1 | tee make.jocl.all.ios-amd64.log diff --git a/make/scripts/make.jocl.all.ios.arm64.sh b/make/scripts/make.jocl.all.ios.arm64.sh new file mode 100755 index 0000000..ed4a688 --- /dev/null +++ b/make/scripts/make.jocl.all.ios.arm64.sh @@ -0,0 +1,32 @@ +#! /bin/sh + +if [ -e /usr/local/etc/profile.ant ] ; then + . /usr/local/etc/profile.ant +fi + +# -Dc.compiler.debug=true + +# Force OSX SDK 10.6, if desired +# export SDKROOT=macosx10.6 + +export SDKROOT=iphoneos13.2 +xcrun --show-sdk-path + +JAVA_HOME=`/usr/libexec/java_home -version 11` +PATH=$JAVA_HOME/bin:$PATH +export JAVA_HOME PATH +which java +java -version + +export SOURCE_LEVEL=1.8 +export TARGET_LEVEL=1.8 +export TARGET_RT_JAR=/usr/local/jre1.8.0_212/lib/rt.jar + +export GLUEGEN_CPPTASKS_FILE=make/lib/gluegen-cpptasks-ios-aarch64.xml + +#export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" +export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" + +ant \ + -Drootrel.build=build-ios-arm64 \ + $* 2>&1 | tee make.jocl.all.ios-arm64.log |