diff options
author | Mike Pall <mike> | 2021-03-26 18:31:42 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2021-03-26 18:31:42 +0100 |
commit | b9d523965b3f55b19345a1ed1ebc92e431747ce1 (patch) | |
tree | a64062e176d4328425d6022fdae4490fb7179fd4 /src | |
parent | 668b1896b378b62b58c2c0d81ebbdc3e1c93117d (diff) | |
download | luajit-b9d523965b3f55b19345a1ed1ebc92e431747ce1.tar.gz luajit-b9d523965b3f55b19345a1ed1ebc92e431747ce1.tar.bz2 luajit-b9d523965b3f55b19345a1ed1ebc92e431747ce1.zip |
BSD: Fix build with BSD grep.
Thanks to carlocab.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 |
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)) | |||
335 | else | 335 | else |
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 |