diff options
author | retro-wertz | 2019-03-08 07:25:44 +0800 |
---|---|---|
committer | GitHub | 2019-03-08 07:25:44 +0800 |
commit | 3bc0af708a3bedb85427a0d375838ab8e6366ca8 (patch) | |
tree | 5f6cb299368196f7215df2d8ee8e1bc0b28185fb /Makefile.libretro | |
parent | 370063b3d0fccabeea7f52241d68cf8bd9a27929 (diff) | |
download | pcsx_rearmed-3bc0af708a3bedb85427a0d375838ab8e6366ca8.tar.gz pcsx_rearmed-3bc0af708a3bedb85427a0d375838ab8e6366ca8.tar.bz2 pcsx_rearmed-3bc0af708a3bedb85427a0d375838ab8e6366ca8.zip |
[ios] Try to fix build target mixups
related: https://github.com/libretro/libretro-super/issues/976
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index 2c22b8a..5585808 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -75,10 +75,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 +356,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 |