summaryrefslogtreecommitdiff
path: root/android-configure
diff options
context:
space:
mode:
Diffstat (limited to 'android-configure')
-rwxr-xr-xandroid-configure19
1 files changed, 19 insertions, 0 deletions
diff --git a/android-configure b/android-configure
new file mode 100755
index 0000000000..7acb7f3766
--- /dev/null
+++ b/android-configure
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+export TOOLCHAIN=$PWD/android-toolchain
+mkdir -p $TOOLCHAIN
+$1/build/tools/make-standalone-toolchain.sh \
+ --toolchain=arm-linux-androideabi-4.7 \
+ --arch=arm \
+ --install-dir=$TOOLCHAIN \
+ --platform=android-9
+export PATH=$TOOLCHAIN/bin:$PATH
+export AR=arm-linux-androideabi-ar
+export CC=arm-linux-androideabi-gcc
+export CXX=arm-linux-androideabi-g++
+export LINK=arm-linux-androideabi-g++
+
+./configure \
+ --without-snapshot \
+ --dest-cpu=arm \
+ --dest-os=android