Mercurial > sdl-ios-xcode
annotate build-scripts/acc.sh @ 4710:aeac51289991
Last test version with GLSurface
author | Paul Hunkin <paul@bieh.net> |
---|---|
date | Mon, 28 Jun 2010 21:35:28 +1200 |
parents | d40bb3165d2b |
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 $@ |