diff options
author | Sven Gothel <[email protected]> | 2012-03-07 02:19:56 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-03-07 02:19:56 +0100 |
commit | f303bc43437e2fa6ccc8d3f8facd2e5dc7c55069 (patch) | |
tree | 595326e29a91a905f876091897f96dabb7a1cdac /make/scripts | |
parent | eb68551873f47261a812e81427fc4ba7e55b197a (diff) |
android build/test fixes and refinement
remote test fix:
- run targetcommand w/ explicit root via 'su'
- rsync: more excludes, only use '-rt'
- explicit chmod 644 on results
- adb commands include naming of remote machine: -s ${env.TARGET_IP}:${env.TARGET_ADB_PORT}
GlueGen-cpptasks-android-armv7:
- use unique project name (warning)
- gcc +
-fpic
-D__unix__
- ld +
-fpic
-nostdlib
-Bdynamic
-Wl,-dynamic-linker,/system/bin/linker
-Wl,-z,nocopyreloc
explicit add 'dl' to list of libs
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/make.gluegen.all.android-armv7-cross.sh | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/make/scripts/make.gluegen.all.android-armv7-cross.sh b/make/scripts/make.gluegen.all.android-armv7-cross.sh index 7d27d6f..e7146f4 100755 --- a/make/scripts/make.gluegen.all.android-armv7-cross.sh +++ b/make/scripts/make.gluegen.all.android-armv7-cross.sh @@ -1,12 +1,18 @@ #! /bin/sh -export HOST_UID=sven -export HOST_IP=192.168.0.52 +export NODE_LABEL=. + +export HOST_UID=jogamp +# jogamp02 - 10.1.0.122 +export HOST_IP=10.1.0.122 export HOST_RSYNC_ROOT=PROJECTS/JOGL export TARGET_UID=jogamp -export TARGET_IP=beagle01 -export TARGET_ROOT=/projects +#export TARGET_IP=jautab03 +export TARGET_IP=jauphone04 +export TARGET_ADB_PORT=5555 +# needs executable bit (probably su) +export TARGET_ROOT=/data/projects export TARGET_ANT_HOME=/usr/share/ant export ANDROID_VERSION=9 |