diff options
| author | van Hauser <vh@thc.org> | 2020-05-13 18:20:06 +0200 |
|---|---|---|
| committer | van Hauser <vh@thc.org> | 2020-05-13 18:20:06 +0200 |
| commit | 8cc54424019d64d5dabd5c53277ddb09542b5a1c (patch) | |
| tree | 7cf01fc302d4dc7cb2ea39a7374dc2eef045d8bd /GNUmakefile | |
| parent | bd94d5fce774e40d874d6efc941998bacad1f933 (diff) | |
| download | afl++-8cc54424019d64d5dabd5c53277ddb09542b5a1c.tar.gz | |
fix GNUmakefile
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index eefba857..00b61cd2 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -211,9 +211,9 @@ ifeq "$(shell echo 'int main() { return 0;}' | $(CC) $(CFLAGS) -fsanitize=addres endif ifdef ASAN_BUILD - $(info Compiling ASAN version of binaries) - CFLAGS+=$(ASAN_CFLAGS) - LDFLAGS+=$(ASAN_LDFLAGS) + $(info Compiling ASAN version of binaries) + CFLAGS+=$(ASAN_CFLAGS) + LDFLAGS+=$(ASAN_LDFLAGS) endif ifeq "$(shell echo '$(HASH)include <sys/ipc.h>@$(HASH)include <sys/shm.h>@int main() { int _id = shmget(IPC_PRIVATE, 65536, IPC_CREAT | IPC_EXCL | 0600); shmctl(_id, IPC_RMID, 0); return 0;}' | tr @ '\n' | $(CC) $(CFLAGS) -x c - -o .test2 2>/dev/null && echo 1 || echo 0 ; rm -f .test2 )" "1" |
