summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/libuv/android-configure
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/libuv/android-configure')
-rw-r--r--3rdparty/libuv/android-configure20
1 files changed, 20 insertions, 0 deletions
diff --git a/3rdparty/libuv/android-configure b/3rdparty/libuv/android-configure
new file mode 100644
index 00000000000..e0b250fb634
--- /dev/null
+++ b/3rdparty/libuv/android-configure
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+export TOOLCHAIN=$PWD/android-toolchain
+mkdir -p $TOOLCHAIN
+$1/build/tools/make-standalone-toolchain.sh \
+ --toolchain=arm-linux-androideabi-4.8 \
+ --arch=arm \
+ --install-dir=$TOOLCHAIN \
+ --platform=android-21
+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++
+export PLATFORM=android
+
+if [ $2 -a $2 == 'gyp' ]
+ then
+ ./gyp_uv.py -Dtarget_arch=arm -DOS=android -f make-android
+fi