From a8212ea7b81ae97f8a45d08b6f38becfbeab9d6c Mon Sep 17 00:00:00 2001 From: vng Date: Wed, 8 Oct 2014 20:31:51 +0300 Subject: [PATCH] [android] Removed armeabi arch in native building script. --- tools/autobuild/android.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/autobuild/android.sh b/tools/autobuild/android.sh index bc4544490a..b5a61c2157 100644 --- a/tools/autobuild/android.sh +++ b/tools/autobuild/android.sh @@ -6,7 +6,7 @@ MY_PATH="`dirname \"$0\"`" # relative MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized if [[ $# < 1 ]]; then - echo "Usage: $0 [armeabi|armeabi-v7a|armeabi-v7a-hard|mips|x86] [android-PLATFORM_NUMBER]" + echo "Usage: $0 [armeabi-v7a-hard|x86] [android-PLATFORM_NUMBER]" exit 1 fi CONFIGURATION="$1" @@ -28,7 +28,7 @@ fi if [[ $# > 1 ]] ; then NDK_ABI_LIST=$2 else - NDK_ABI_LIST=(armeabi armeabi-v7a-hard x86) + NDK_ABI_LIST=(armeabi-v7a-hard x86) fi