iOS: Fix interpreter overrides
authornegativeExponent <negativeExponent@users.noreply.github.com>
Fri, 23 Oct 2020 04:55:58 +0000 (12:55 +0800)
committernegativeExponent <negativeExponent@users.noreply.github.com>
Fri, 23 Oct 2020 05:10:37 +0000 (13:10 +0800)
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...:

Makefile.libretro

index e58d63d..1df1188 100644 (file)
@@ -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