diff options
author | Twinaphex | 2019-03-21 23:50:19 +0100 |
---|---|---|
committer | GitHub | 2019-03-21 23:50:19 +0100 |
commit | 9c22d064d2b745b7484b8c10927c808bdf1133e9 (patch) | |
tree | 01d514d265b96a413689c29fc0ddfb387da96a6d | |
parent | f3147e07c60c2c2104685c7fc5c270312162d86f (diff) | |
parent | 2cf8d379907700d6c355fb80d66361dfa7669515 (diff) | |
download | pcsx_rearmed-9c22d064d2b745b7484b8c10927c808bdf1133e9.tar.gz pcsx_rearmed-9c22d064d2b745b7484b8c10927c808bdf1133e9.tar.bz2 pcsx_rearmed-9c22d064d2b745b7484b8c10927c808bdf1133e9.zip |
Merge pull request #253 from hhromic/buildfix-armv
(BuildFix) Do not leave HAVE_NEON unset in armv platform check
-rw-r--r-- | Makefile.libretro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index 8899ed7..3034cdf 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -285,7 +285,9 @@ else ifeq ($(platform), classic_armv7_a7) else ifneq (,$(findstring armv,$(platform))) TARGET := $(TARGET_NAME)_libretro.so fpic := -fPIC + HAVE_NEON = 0 DRC_CACHE_BASE = 0 + BUILTIN_GPU = peops ifneq (,$(findstring cortexa8,$(platform))) CFLAGS += -marm -mcpu=cortex-a8 ASFLAGS += -mcpu=cortex-a8 |