From 4b342554b57013efb2db6fd81d6cb3f6c678fc52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1ri=20Tristan=20Helgason?= Date: Sat, 19 Mar 2016 11:21:37 +0000 Subject: [PATCH] build: bump android ndk version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/790 Reviewed-By: Saúl Ibarra Corretgé Reviewed-By: Ben Noordhuis --- android-configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android-configure b/android-configure index e0b250fb..7ffc035c 100755 --- a/android-configure +++ b/android-configure @@ -3,7 +3,7 @@ export TOOLCHAIN=$PWD/android-toolchain mkdir -p $TOOLCHAIN $1/build/tools/make-standalone-toolchain.sh \ - --toolchain=arm-linux-androideabi-4.8 \ + --toolchain=arm-linux-androideabi-4.9 \ --arch=arm \ --install-dir=$TOOLCHAIN \ --platform=android-21 @@ -14,7 +14,7 @@ export CXX=arm-linux-androideabi-g++ export LINK=arm-linux-androideabi-g++ export PLATFORM=android -if [ $2 -a $2 == 'gyp' ] +if [[ $2 == 'gyp' ]] then ./gyp_uv.py -Dtarget_arch=arm -DOS=android -f make-android fi