diff options
author | van Hauser <vh@thc.org> | 2020-12-28 13:54:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-28 13:54:17 +0100 |
commit | 41dad9ab7d342528e95a1700501753a24031ea51 (patch) | |
tree | 32d58a9a7232ac9cc104fcdc759131994f315c17 | |
parent | e22db8d60959ef7d78b4710203c7547b4a47e5ff (diff) | |
parent | 108e28ff10c86b81e8f280ac4aa5c5b7269c451a (diff) | |
download | afl++-41dad9ab7d342528e95a1700501753a24031ea51.tar.gz |
Merge pull request #664 from AFLplusplus/dev
fix CFLAGS for extra libs
-rw-r--r-- | utils/libdislocator/Makefile | 2 | ||||
-rw-r--r-- | utils/libtokencap/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/libdislocator/Makefile b/utils/libdislocator/Makefile index 2942c3c3..f0b4bb72 100644 --- a/utils/libdislocator/Makefile +++ b/utils/libdislocator/Makefile @@ -19,7 +19,7 @@ HELPER_PATH = $(PREFIX)/lib/afl VERSION = $(shell grep '^\#define VERSION ' ../../config.h | cut -d '"' -f2) CFLAGS ?= -O3 -funroll-loops -D_FORTIFY_SOURCE=2 -CFLAGS += -I ../../include/ -Wall -g -Wno-pointer-sign +override CFLAGS += -I ../../include/ -Wall -g -Wno-pointer-sign CFLAGS_ADD=$(USEHUGEPAGE:1=-DUSEHUGEPAGE) CFLAGS += $(CFLAGS_ADD) diff --git a/utils/libtokencap/Makefile b/utils/libtokencap/Makefile index 8bbdc259..b81e1729 100644 --- a/utils/libtokencap/Makefile +++ b/utils/libtokencap/Makefile @@ -21,7 +21,7 @@ MAN_PATH ?= $(PREFIX)/share/man/man8 VERSION = $(shell grep '^\#define VERSION ' ../../config.h | cut -d '"' -f2) CFLAGS ?= -O3 -funroll-loops -D_FORTIFY_SOURCE=2 -CFLAGS += -I ../../include/ -Wall -g -Wno-pointer-sign +override CFLAGS += -I ../../include/ -Wall -g -Wno-pointer-sign UNAME_S =$(shell uname -s)# GNU make |