diff options
author | retro-wertz | 2019-03-08 08:24:36 +0800 |
---|---|---|
committer | retro-wertz | 2019-03-08 08:24:36 +0800 |
commit | c8c2bdfe6e5e6c2e3903e9735594075064bf7e2c (patch) | |
tree | 89941496abe244c50aa2221b7f85889a1d2fa409 /Makefile.libretro | |
parent | 658c0d737c8de308ac05a6784783c706f9c9e57f (diff) | |
download | pcsx_rearmed-c8c2bdfe6e5e6c2e3903e9735594075064bf7e2c.tar.gz pcsx_rearmed-c8c2bdfe6e5e6c2e3903e9735594075064bf7e2c.tar.bz2 pcsx_rearmed-c8c2bdfe6e5e6c2e3903e9735594075064bf7e2c.zip |
Fix OSX interpreter build target
- similar to IOS build fix
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index 5585808..8899ed7 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,8 +80,8 @@ 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),0) # Override |