ANDROID: Explicitly include the arm architecture parameter for the toolchain creation script for newer versions of the NDK. (From: Yoyo)

This commit is contained in:
Rom Walton 2015-01-21 19:28:51 -05:00
parent d20c4a6b65
commit df5ef38a7f
1 changed files with 1 additions and 1 deletions

View File

@ -9,5 +9,5 @@
export ANDROIDTC="$HOME/androidarm-tc"
if [ ! -d $ANDROIDTC/arm-linux-androideabi ]; then
$NDKROOT/build/tools/make-standalone-toolchain.sh --platform=android-9 --install-dir=$ANDROIDTC
$NDKROOT/build/tools/make-standalone-toolchain.sh --platform=android-9 --arch=arm --install-dir=$ANDROIDTC
fi