diff options
author | van Hauser <vh@thc.org> | 2020-06-21 16:43:55 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-06-21 16:43:55 +0200 |
commit | f6ef1fe65ecb1414af18f6132c375b127cb8a048 (patch) | |
tree | 90de77b84e61c1e1d9e1cfda708ae5389fe2ff8d | |
parent | 048e429356fb5a8592c3f6607fd4e91c7a7a2cd3 (diff) | |
download | afl++-f6ef1fe65ecb1414af18f6132c375b127cb8a048.tar.gz |
fix libcompcov for CFLAGS
-rw-r--r-- | qemu_mode/libcompcov/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qemu_mode/libcompcov/Makefile b/qemu_mode/libcompcov/Makefile index f06ac2af..9ed3e3fa 100644 --- a/qemu_mode/libcompcov/Makefile +++ b/qemu_mode/libcompcov/Makefile @@ -20,7 +20,8 @@ MAN_PATH ?= $(PREFIX)/man/man8 VERSION = $(shell grep '^\#define VERSION ' ../config.h | cut -d '"' -f2) -CFLAGS ?= -O3 -funroll-loops -I ../../include/ +CFLAGS ?= -O3 -funroll-loops +CFLAGS += -I ../../include/ CFLAGS += -Wall -Wno-unused-result -D_FORTIFY_SOURCE=2 -g -Wno-pointer-sign LDFLAGS += -ldl |