[android] Added mips ABI support for cheap android tablets

This commit is contained in:
Alex Zolotarev 2012-06-09 12:34:42 -07:00 committed by Alex Zolotarev
parent 923df9cc2a
commit d146cfebf6
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
APP_PLATFORM := android-5
APP_ABI := armeabi armeabi-v7a
APP_ABI := armeabi armeabi-v7a mips
APP_STL := gnustl_static
LOCAL_PATH := $(call my-dir)
APP_CFLAGS += -I$(LOCAL_PATH)/../../3party/boost

View file

@ -22,7 +22,7 @@ SHADOW_DIR_BASE="$LOCAL_DIRNAME/../../../omim-android"
export NDK_ROOT=$(GetNdkRoot) || ( echo "Can't read NDK root path from android/local.properties"; exit 1 )
export NDK_HOST=$(GetNdkHost) || ( echo "Can't get your OS type, please check tools/autobuild/ndk_helper.sh script"; exit 1 )
NDK_ABI_TO_BUILD=(armeabi armeabi-v7a)
NDK_ABI_TO_BUILD=(armeabi armeabi-v7a mips)
for abi in "${NDK_ABI_TO_BUILD[@]}"; do
SHADOW_DIR="${SHADOW_DIR_BASE}-${CONFIGURATION}-${abi}"