diff options
| author | van Hauser <vh@thc.org> | 2023-06-06 17:43:19 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-06 17:43:19 +0300 | 
| commit | 7c84331dc5259311c1be70a25a03aaeefb746ef6 (patch) | |
| tree | 4dcfff4a4d53b3390e6c2d1bc17248d45f41f687 /GNUmakefile | |
| parent | f9b72b6f2f9a6545143ad2efa40ea0b527a5bf5c (diff) | |
| parent | ee2cab73ac6c72095f781da979094f877291a1d6 (diff) | |
| download | afl++-7c84331dc5259311c1be70a25a03aaeefb746ef6.tar.gz | |
Merge pull request #1760 from AFLplusplus/dev
push to stable
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/GNUmakefile b/GNUmakefile index 715e7386..55676d97 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -291,8 +291,6 @@ ifeq "$(shell command -v svn >/dev/null && svn proplist . 2>/dev/null && echo 1 IN_REPO=1 endif -CCVER=$(shell cc -v 2>&1|tail -n 1) - ifeq "$(shell echo 'int main() { return 0;}' | $(CC) $(CFLAGS) -fsanitize=address -x c - -o .test2 2>/dev/null && echo 1 || echo 0 ; rm -f .test2 )" "1" ASAN_CFLAGS=-fsanitize=address -fstack-protector-all -fno-omit-frame-pointer -DASAN_BUILD ASAN_LDFLAGS=-fsanitize=address -fstack-protector-all -fno-omit-frame-pointer @@ -439,7 +437,7 @@ endif .PHONY: ready ready: - @echo "[+] Everything seems to be working, ready to compile. ($(CCVER))" + @echo "[+] Everything seems to be working, ready to compile. ($(shell $(CC) --version 2>&1|head -n 1))" afl-as: src/afl-as.c include/afl-as.h $(COMM_HDR) | test_x86 $(CC) $(CFLAGS) src/$@.c -o $@ $(LDFLAGS) | 
