From 405f21d04ee336837ea0d56c83abf947ebb2ca0b Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Sun, 9 Feb 2020 11:12:18 +0100 Subject: [PATCH] Update Makefile.libretro --- Makefile.libretro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.libretro b/Makefile.libretro index 91e6e054..fb6e59c2 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -76,6 +76,7 @@ else ifeq ($(platform), osx) fpic += -mmacosx-version-min=10.1 ifeq ($(DYNAREC),lightrec) # Override + DYNAREC = 0 TARGET := $(TARGET_NAME)_interpreter_libretro.dylib endif @@ -84,6 +85,7 @@ else ifeq ($(platform),$(filter $(platform),ios-arm64)) ARCH := arm64 HAVE_NEON = 0 BUILTIN_GPU = peops + DYNAREC = 0 TARGET := $(TARGET_NAME)_interpreter_libretro_ios.dylib CC = clang -arch arm64 -isysroot $(IOSSDK) -miphoneos-version-min=8.0 @@ -98,6 +100,7 @@ else ifneq (,$(findstring ios,$(platform))) TARGET := $(TARGET_NAME)_libretro_ios.dylib ifeq ($(DYNAREC),lightrec) # Override + DYNAREC = 0 TARGET := $(TARGET_NAME)_interpreter_libretro_ios.dylib endif fpic := -fPIC -- 2.39.2