mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
628b644785
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.
7 lines
119 B
Makefile
7 lines
119 B
Makefile
ifeq ($(GLES),3)
|
|
APP_PLATFORM := android-18
|
|
else
|
|
APP_PLATFORM := android-9
|
|
endif
|
|
APP_ABI := armeabi-v7a mips x86
|