diff options
author | Sven Gothel <[email protected]> | 2012-02-19 02:32:50 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-19 02:32:50 +0100 |
commit | 9451174b1757675e75db44dc09e2888807f112d9 (patch) | |
tree | 3da61dcaffa91ed628f5086c2976e3ebbed2ccbf /make/scripts | |
parent | 02bdec3dbfac73847518668a070de11a5fb863af (diff) |
Fix linux-armv7 crosscompilation
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/make.gluegen.all.linux-armv7-cross.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/make/scripts/make.gluegen.all.linux-armv7-cross.sh b/make/scripts/make.gluegen.all.linux-armv7-cross.sh index 53fb946..27711c5 100755 --- a/make/scripts/make.gluegen.all.linux-armv7-cross.sh +++ b/make/scripts/make.gluegen.all.linux-armv7-cross.sh @@ -1,5 +1,11 @@ #! /bin/sh +SDIR=`dirname $0` + +if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then + . $SDIR/setenv-build-jogl-x86_64.sh +fi + PATH=`pwd`/lib/linux/arm-linux-gnueabi/bin:$PATH export PATH @@ -10,8 +16,8 @@ export PATH # -DisLinuxARMv7=true \ # -DisX11=false \ -export HOST_UID=sven -export HOST_IP=192.168.0.52 +export HOST_UID=jogamp +export HOST_IP=jogamp02 export HOST_RSYNC_ROOT=PROJECTS/JOGL export TARGET_UID=jogamp |