diff options
author | vanhauser-thc <vh@thc.org> | 2023-07-23 13:05:10 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-07-23 13:05:10 +0200 |
commit | 705cdf45fc32e6f5fcf3b8e58242ede3b99b8b6e (patch) | |
tree | 1e47be2bdf64477c972c964681dfd3733a135311 /GNUmakefile.gcc_plugin | |
parent | 5f813bbb86e1c9e2480669c44501e9780043728c (diff) | |
download | afl++-705cdf45fc32e6f5fcf3b8e58242ede3b99b8b6e.tar.gz |
temp cmplog fixes
Diffstat (limited to 'GNUmakefile.gcc_plugin')
-rw-r--r-- | GNUmakefile.gcc_plugin | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/GNUmakefile.gcc_plugin b/GNUmakefile.gcc_plugin index 41face4c..29d0ed9d 100644 --- a/GNUmakefile.gcc_plugin +++ b/GNUmakefile.gcc_plugin @@ -28,14 +28,16 @@ MAN_PATH ?= $(PREFIX)/share/man/man8 VERSION = $(shell grep '^$(HASH)define VERSION ' ./config.h | cut -d '"' -f2) -CFLAGS ?= -O3 -g -funroll-loops -D_FORTIFY_SOURCE=1 +CFLAGS ?= -O3 -g -funroll-loops +# -D_FORTIFY_SOURCE=1 CFLAGS_SAFE := -Wall -Iinclude -Wno-pointer-sign \ -DAFL_PATH=\"$(HELPER_PATH)\" -DBIN_PATH=\"$(BIN_PATH)\" \ -DGCC_VERSION=\"$(GCCVER)\" -DGCC_BINDIR=\"$(GCCBINDIR)\" \ -Wno-unused-function override CFLAGS += $(CFLAGS_SAFE) -CXXFLAGS ?= -O3 -g -funroll-loops -D_FORTIFY_SOURCE=1 +CXXFLAGS ?= -O3 -g -funroll-loops +# -D_FORTIFY_SOURCE=1 CXXEFLAGS := $(CXXFLAGS) -Wall -std=c++11 CC ?= gcc |