From 628b644785805409cf44674d91c088cb96b35691 Mon Sep 17 00:00:00 2001 From: l3iggs Date: Sat, 26 Jul 2014 11:28:23 -0700 Subject: [PATCH] (Android) restrict abi targets This fixes a build error I get with the latest android NDK (r10) complaining about an unsupported architecture (armeabi, maybe it was retired). Also, libretro-build-android-mk.sh only builds the cores for armeabi-v7a, mips and x86 anyway so there is no point in building the app for other architectures. --- android/phoenix/jni/Application.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/phoenix/jni/Application.mk b/android/phoenix/jni/Application.mk index e5fb02e9b5..2466e00247 100644 --- a/android/phoenix/jni/Application.mk +++ b/android/phoenix/jni/Application.mk @@ -3,4 +3,4 @@ ifeq ($(GLES),3) else APP_PLATFORM := android-9 endif -APP_ABI := all +APP_ABI := armeabi-v7a mips x86