X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.libretro;h=2d88b70b76b4d1b46233c3cff489c044b64a35ef;hb=5a49b8a2620bfdfaaf59ae25aa51bde44610371b;hp=28a47fdafb9e44d3cebe767e9aae9b4a217542e8;hpb=2a8fedf7715b816d95467fe261edd3c8372bd34b;p=pcsx_rearmed.git diff --git a/Makefile.libretro b/Makefile.libretro index 28a47fda..2d88b70b 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -60,9 +60,14 @@ else ifeq ($(platform), linux-portable) # OS X else ifeq ($(platform), osx) + USE_DYNAREC ?= 1 TARGET := $(TARGET_NAME)_libretro.dylib fpic := -fPIC fpic += -mmacosx-version-min=10.1 +ifeq ($(USE_DYNAREC),0) + # Override + TARGET := $(TARGET_NAME)_interpreter_libretro.dylib +endif # iOS else ifeq ($(platform),$(filter $(platform),ios-arm64)) @@ -75,10 +80,10 @@ else ifeq ($(platform),$(filter $(platform),ios-arm64)) else ifneq (,$(findstring ios,$(platform))) ARCH := arm USE_DYNAREC ?= 1 - HAVE_NEON = 1 - BUILTIN_GPU = neon + HAVE_NEON = 1 + BUILTIN_GPU = neon TARGET := $(TARGET_NAME)_libretro_ios.dylib -ifeq ($(USE_DYNAREC),1) +ifeq ($(USE_DYNAREC),0) # Override TARGET := $(TARGET_NAME)_interpreter_libretro_ios.dylib endif @@ -356,13 +361,14 @@ SOUND_DRIVERS = libretro PLUGINS = NO_CONFIG_MAK = yes -libretro_all: all -ifeq ($(platform),ios) -ifeq ($(USE_DYNAREC),1) - make -f Makefile.libretro USE_DYNAREC=0 platform=$(platform) clean - make -f Makefile.libretro USE_DYNAREC=0 platform=$(platform) -endif -endif +# what does this do +#libretro_all: all +#ifeq ($(platform),ios) +#ifeq ($(USE_DYNAREC),1) +# make -f Makefile.libretro USE_DYNAREC=0 platform=$(platform) clean +# make -f Makefile.libretro USE_DYNAREC=0 platform=$(platform) +#endif +#endif include Makefile