diff options
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/make.gluegen.all.linux-armv6-cross.sh | 2 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.linux-armv6hf-cross.sh | 2 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.sh | 9 | ||||
-rwxr-xr-x | make/scripts/runtest.sh | 6 |
4 files changed, 14 insertions, 5 deletions
diff --git a/make/scripts/make.gluegen.all.linux-armv6-cross.sh b/make/scripts/make.gluegen.all.linux-armv6-cross.sh index bd56e89..7c1dee4 100755 --- a/make/scripts/make.gluegen.all.linux-armv6-cross.sh +++ b/make/scripts/make.gluegen.all.linux-armv6-cross.sh @@ -7,7 +7,7 @@ if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then fi # arm-linux-gnueabi == armel triplet -PATH=`pwd`/lib/linux/arm-linux-gnueabi/bin:$PATH +PATH=`pwd`/lib/toolchain/armsf-linux-gnueabi/bin:$PATH export PATH # -Dc.compiler.debug=true diff --git a/make/scripts/make.gluegen.all.linux-armv6hf-cross.sh b/make/scripts/make.gluegen.all.linux-armv6hf-cross.sh index c8c8f14..331a97b 100755 --- a/make/scripts/make.gluegen.all.linux-armv6hf-cross.sh +++ b/make/scripts/make.gluegen.all.linux-armv6hf-cross.sh @@ -7,7 +7,7 @@ if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then fi # arm-linux-gnueabihf == armhf triplet -PATH=`pwd`/lib/linux/arm-linux-gnueabihf/bin:$PATH +PATH=`pwd`/lib/toolchain/armhf-linux-gnueabi/bin:$PATH export PATH # -Dc.compiler.debug=true diff --git a/make/scripts/make.gluegen.all.sh b/make/scripts/make.gluegen.all.sh new file mode 100755 index 0000000..ec97d04 --- /dev/null +++ b/make/scripts/make.gluegen.all.sh @@ -0,0 +1,9 @@ +#! /bin/sh + +SDIR=`dirname $0` + +$SDIR/make.gluegen.all.linux-armv6-cross.sh \ +&& $SDIR/make.gluegen.all.linux-armv6hf-cross.sh \ +&& $SDIR/make.gluegen.all.linux-x86_64.sh \ +&& $SDIR/make.gluegen.all.linux-x86.sh \ +&& $SDIR/make.gluegen.all.android-armv6-cross.sh \ diff --git a/make/scripts/runtest.sh b/make/scripts/runtest.sh index f38d179..769a034 100755 --- a/make/scripts/runtest.sh +++ b/make/scripts/runtest.sh @@ -73,7 +73,7 @@ function onetest() { echo } # -#onetest com.jogamp.common.GlueGenVersion 2>&1 | tee -a $LOG +onetest com.jogamp.common.GlueGenVersion 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestSystemPropsAndEnvs 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestVersionInfo 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestVersionNumber 2>&1 | tee -a $LOG @@ -93,9 +93,9 @@ function onetest() { #onetest com.jogamp.gluegen.PCPPTest 2>&1 | tee -a $LOG #onetest com.jogamp.common.nio.TestPointerBufferEndian 2>&1 | tee -a $LOG #onetest com.jogamp.common.nio.TestStructAccessorEndian 2>&1 | tee -a $LOG -#onetest com.jogamp.common.os.TestElfReader01 2>&1 | tee -a $LOG +onetest com.jogamp.common.os.TestElfReader01 2>&1 | tee -a $LOG #onetest com.jogamp.gluegen.test.junit.generation.Test1p1JavaEmitter 2>&1 | tee -a $LOG -onetest com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter 2>&1 | tee -a $LOG +#onetest com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestPlatform01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestRunnableTask01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestIOUtil01 2>&1 | tee -a $LOG |