From: negativeExponent Date: Fri, 23 Oct 2020 04:55:58 +0000 (+0800) Subject: iOS: Fix interpreter overrides X-Git-Tag: r24l~615^2 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e877236715dce2078bf60be153dcea92da6f6c99;hp=accedc82b01fe5834a805a9872405d51de1d5c06;p=pcsx_rearmed.git 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...: --- diff --git a/Makefile.libretro b/Makefile.libretro index e58d63d2..1df1188e 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