From e877236715dce2078bf60be153dcea92da6f6c99 Mon Sep 17 00:00:00 2001 From: negativeExponent Date: Fri, 23 Oct 2020 12:55:58 +0800 Subject: 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...: --- Makefile.libretro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3