diff options
author | negativeExponent | 2020-10-23 12:55:58 +0800 |
---|---|---|
committer | negativeExponent | 2020-10-23 13:10:37 +0800 |
commit | e877236715dce2078bf60be153dcea92da6f6c99 (patch) | |
tree | 2d5d0a4af277a6c597c5cb7d94d0a7da3eba7145 | |
parent | accedc82b01fe5834a805a9872405d51de1d5c06 (diff) | |
download | pcsx_rearmed-e877236715dce2078bf60be153dcea92da6f6c99.tar.gz pcsx_rearmed-e877236715dce2078bf60be153dcea92da6f6c99.tar.bz2 pcsx_rearmed-e877236715dce2078bf60be153dcea92da6f6c99.zip |
iOS: Fix interpreter overrides
By default, iOS are built with either DYNAREC=ari64 or DYNAREC=lightrec, with lightrec used as an override flag to build the interpreter instead, which is DYNAREC=0.
This PR removes DYNAREC?=ari64 which seems to block the overrides from working.
Hopefully...:
-rw-r--r-- | Makefile.libretro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index e58d63d..1df1188 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -89,7 +89,7 @@ else ifeq ($(platform),$(filter $(platform),ios-arm64)) else ifneq (,$(findstring ios,$(platform))) ARCH := arm - DYNAREC ?= ari64 +# DYNAREC ?= ari64 HAVE_NEON = 1 BUILTIN_GPU = neon TARGET := $(TARGET_NAME)_libretro_ios.dylib |