From a71d0c6e8f5a6c30182ab2d365f8813c3c875c0d Mon Sep 17 00:00:00 2001 From: l3iggs Date: Thu, 21 Aug 2014 23:01:46 -0700 Subject: [PATCH] (Android) add armeabi back Let's add armeabi back and see how it goes now. Also I'm not sure why we're BUILD_LIBRETRO_GL=1 only when libretro-config-user.sh is absent. --- libretro-config.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/libretro-config.sh b/libretro-config.sh index d4f409e2..4d4efeb2 100755 --- a/libretro-config.sh +++ b/libretro-config.sh @@ -82,7 +82,7 @@ export FORMAT_COMPILER_TARGET_ALT="$FORMAT_COMPILER_TARGET" #============== #if uncommented, will build libretro GL cores. Ignored for mobile platforms - GL cores will always be built there. -#export BUILD_LIBRETRO_GL=1 +export BUILD_LIBRETRO_GL=1 #if uncommented, will build cores with OpenGL ES 2 support. Not needed #for platform-specific cores - only for generic core builds (ie. libretro-build.sh) @@ -91,7 +91,7 @@ export FORMAT_COMPILER_TARGET_ALT="$FORMAT_COMPILER_TARGET" #ANDROID DEFINES #================ -export TARGET_ABIS="armeabi-v7a mips x86" +export TARGET_ABIS="armeabi armeabi-v7a mips x86" #uncomment to define NDK standalone toolchain for ARM #export NDK_ROOT_DIR_ARM = @@ -122,7 +122,4 @@ export RA_ANDROID_MIN_API=android-9 if [ -f "libretro-config-user.sh" ]; then . ./libretro-config-user.sh -else -# Sane defaults -export BUILD_LIBRETRO_GL=1 fi