diff options
author | Glenn | 2017-12-11 21:02:27 +1100 |
---|---|---|
committer | Glenn | 2017-12-11 21:02:27 +1100 |
commit | aab1b446955563859b23962fc2d3faff34bf4903 (patch) | |
tree | dfdfb70758b40b744dbd7b01b89909c24e05989d /Makefile.libretro | |
parent | 778ad9ceb24770bfb4d3b9d697429475c55009ee (diff) | |
download | pcsx_rearmed-aab1b446955563859b23962fc2d3faff34bf4903.tar.gz pcsx_rearmed-aab1b446955563859b23962fc2d3faff34bf4903.tar.bz2 pcsx_rearmed-aab1b446955563859b23962fc2d3faff34bf4903.zip |
Fixed ios9 compilation
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index c1e4051..b085912 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -53,7 +53,7 @@ else ifeq ($(platform), osx) fpic += -mmacosx-version-min=10.1 # iOS -else ifeq ($(platform),$(filter $(platform),ios9 ios-arm64)) +else ifeq ($(platform),$(filter $(platform),ios-arm64)) ARCH := arm64 USE_DYNAREC = 0 HAVE_NEON = 0 @@ -66,7 +66,7 @@ else ifneq (,$(findstring ios,$(platform))) HAVE_NEON = 1 BUILTIN_GPU = neon TARGET := $(TARGET_NAME)_libretro_ios.dylib -ifeq ($(USE_DYNAREC),0) +ifeq ($(USE_DYNAREC),1) # Override TARGET := $(TARGET_NAME)_interpreter_libretro_ios.dylib endif |