[android] Removed mips platform support as it's not popular on the markets

This commit is contained in:
Alex Zolotarev 2013-10-04 14:23:13 +03:00 committed by Alex Zolotarev
parent 9a237325cc
commit 25f18db787
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ NDK_TOOLCHAIN_VERSION := 4.6
APP_PLATFORM := android-5
ifeq (x$(NDK_ABI_TO_BUILD), x)
APP_ABI := armeabi armeabi-v7a mips x86
APP_ABI := armeabi armeabi-v7a x86
else
APP_ABI := $(NDK_ABI_TO_BUILD)
endif

View file

@ -28,7 +28,7 @@ fi
if [[ $# > 1 ]] ; then
NDK_ABI_LIST=$2
else
NDK_ABI_LIST=(armeabi armeabi-v7a mips x86)
NDK_ABI_LIST=(armeabi armeabi-v7a x86)
fi