aboutsummaryrefslogtreecommitdiff
path: root/Makefile.libretro
diff options
context:
space:
mode:
authorGlenn2017-12-10 23:25:01 +1100
committerGlenn2017-12-10 23:25:01 +1100
commit8fb0f7c5551ed450ef3ed56615e0d86f1b56739d (patch)
tree9c7aebfe1558afb2c99b3bd4ee2e923299d96b36 /Makefile.libretro
parentc7dde5efda060c5baf259c6ad39090e1cb1defd6 (diff)
downloadpcsx_rearmed-8fb0f7c5551ed450ef3ed56615e0d86f1b56739d.tar.gz
pcsx_rearmed-8fb0f7c5551ed450ef3ed56615e0d86f1b56739d.tar.bz2
pcsx_rearmed-8fb0f7c5551ed450ef3ed56615e0d86f1b56739d.zip
Fixed building for arm64 (iOS)
Diffstat (limited to 'Makefile.libretro')
-rw-r--r--Makefile.libretro7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.libretro b/Makefile.libretro
index fb13657..de818aa 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -53,6 +53,13 @@ else ifeq ($(platform), osx)
fpic += -mmacosx-version-min=10.1
# iOS
+else ifeq ($(platform),$(filter $(platform),ios9 ios-arm64))
+ ARCH := arm64
+ USE_DYNAREC = 0
+ HAVE_NEON = 0
+ BUILTIN_GPU = peops
+ TARGET := $(TARGET_NAME)_libretro_ios.dylib
+
else ifneq (,$(findstring ios,$(platform)))
ARCH := arm
USE_DYNAREC ?= 1