diff options
author | Mike Pall <mike> | 2015-01-07 20:59:37 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2015-01-07 20:59:37 +0100 |
commit | ce1a5ee535aea909f297a56bce8ff113e1763403 (patch) | |
tree | 7f9943aaa7098f07f7abfff305e6205e5f74a25c | |
parent | 9647aab0dc56652d5c54c464d7f1169e27fcbcd0 (diff) | |
download | luajit-ce1a5ee535aea909f297a56bce8ff113e1763403.tar.gz luajit-ce1a5ee535aea909f297a56bce8ff113e1763403.tar.bz2 luajit-ce1a5ee535aea909f297a56bce8ff113e1763403.zip |
iOS/ARM64: The frame pointer is required.
Diffstat (limited to '')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
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)) | |||
313 | TARGET_XSHLDFLAGS= -dynamiclib -single_module -undefined dynamic_lookup -fPIC | 313 | TARGET_XSHLDFLAGS= -dynamiclib -single_module -undefined dynamic_lookup -fPIC |
314 | TARGET_DYNXLDOPTS= | 314 | TARGET_DYNXLDOPTS= |
315 | TARGET_XSHLDFLAGS+= -install_name $(TARGET_DYLIBPATH) -compatibility_version $(MAJVER).$(MINVER) -current_version $(MAJVER).$(MINVER).$(RELVER) | 315 | TARGET_XSHLDFLAGS+= -install_name $(TARGET_DYLIBPATH) -compatibility_version $(MAJVER).$(MINVER) -current_version $(MAJVER).$(MINVER).$(RELVER) |
316 | ifeq (arm64,$(TARGET_LJARCH)) | ||
317 | TARGET_XCFLAGS+= -fno-omit-frame-pointer | ||
318 | endif | ||
316 | else | 319 | else |
317 | ifneq (SunOS,$(TARGET_SYS)) | 320 | ifneq (SunOS,$(TARGET_SYS)) |
318 | ifneq (PS3,$(TARGET_SYS)) | 321 | ifneq (PS3,$(TARGET_SYS)) |