aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index c98e571f..ca4afeab 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -335,7 +335,7 @@ ifeq (iOS,$(TARGET_SYS))
335else 335else
336 ifeq (,$(findstring LJ_NO_UNWIND 1,$(TARGET_TESTARCH))) 336 ifeq (,$(findstring LJ_NO_UNWIND 1,$(TARGET_TESTARCH)))
337 # Find out whether the target toolchain always generates unwind tables. 337 # Find out whether the target toolchain always generates unwind tables.
338 TARGET_TESTUNWIND=$(shell exec 2>/dev/null; echo 'extern void b(void);int a(void){b();return 0;}' | $(TARGET_CC) -c -x c - -o tmpunwind.o && grep -qa -e eh_frame -e __unwind_info tmpunwind.o && echo E; rm -f tmpunwind.o) 338 TARGET_TESTUNWIND=$(shell exec 2>/dev/null; echo 'extern void b(void);int a(void){b();return 0;}' | $(TARGET_CC) -c -x c - -o tmpunwind.o && grep -qU -e eh_frame -e __unwind_info tmpunwind.o && echo E; rm -f tmpunwind.o)
339 ifneq (,$(findstring E,$(TARGET_TESTUNWIND))) 339 ifneq (,$(findstring E,$(TARGET_TESTUNWIND)))
340 TARGET_XCFLAGS+= -DLUAJIT_UNWIND_EXTERNAL 340 TARGET_XCFLAGS+= -DLUAJIT_UNWIND_EXTERNAL
341 endif 341 endif