From ce1a5ee535aea909f297a56bce8ff113e1763403 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Wed, 7 Jan 2015 20:59:37 +0100 Subject: [PATCH] iOS/ARM64: The frame pointer is required. --- src/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Makefile b/src/Makefile index 49afd3a6..71ab6ea0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -313,6 +313,9 @@ ifeq (iOS,$(TARGET_SYS)) TARGET_XSHLDFLAGS= -dynamiclib -single_module -undefined dynamic_lookup -fPIC TARGET_DYNXLDOPTS= TARGET_XSHLDFLAGS+= -install_name $(TARGET_DYLIBPATH) -compatibility_version $(MAJVER).$(MINVER) -current_version $(MAJVER).$(MINVER).$(RELVER) + ifeq (arm64,$(TARGET_LJARCH)) + TARGET_XCFLAGS+= -fno-omit-frame-pointer + endif else ifneq (SunOS,$(TARGET_SYS)) ifneq (PS3,$(TARGET_SYS))