annotate android/scripts/acc.sh @ 4722:faa228f7ce5b

- Cleaned up a bunch of code - Added 'feature' enable/disable so we're not running accel/sound/whatever in Java when we don't need to be - More work on the sound system. But it still crashes pretty horribly, not sure why yet.
author Paul Hunkin <paul@bieh.net>
date Tue, 27 Jul 2010 21:21:24 +0200
parents 0f05f2f16fad
children
rev   line source
4699
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
1 #!/bin/bash
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
2 ANDROID_NDK="/home/paul/Projects/gsoc/sdk/android-ndk-r4"
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
3 TOOLS_PATH="$ANDROID_NDK/build/prebuilt/linux-x86/arm-eabi-4.2.1/bin"
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
4
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
5 export PATH=$TOOLS_PATH:$PATH
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
6
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
7 CC="arm-eabi-gcc"
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
8
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
9 #cflags
4701
d40bb3165d2b Added (partially implemented) android video backend and associated files needed to build
Paul Hunkin <paul@bieh.net>
parents: 4699
diff changeset
10 ACC_C=" -I$ANDROID_NDK/build/platforms/android-8/common/include \
d40bb3165d2b Added (partially implemented) android video backend and associated files needed to build
Paul Hunkin <paul@bieh.net>
parents: 4699
diff changeset
11 -I$ANDROID_NDK/build/platforms/android-8/arch-arm/usr/include \
d40bb3165d2b Added (partially implemented) android video backend and associated files needed to build
Paul Hunkin <paul@bieh.net>
parents: 4699
diff changeset
12 -DANDROID -DANDROID_NDK -c"
4699
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
13
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
14
925008931501 Added some wrapper shell scripts to make android compiling easier
Paul Hunkin <paul@bieh.net>
parents:
diff changeset
15 $CC $CFLAGS $ACC_C $@