diff options
author | hexcoder- <heiko@hexco.de> | 2020-09-11 21:46:20 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-09-11 21:46:20 +0200 |
commit | 38e6de1effbeb0e3deab08800c5d94c7a488648a (patch) | |
tree | 026ed4ead9fa7b8419e081182bd60acdbf3cb66c /GNUmakefile.gcc_plugin | |
parent | 862b6d0382a132cc5338cfdcdc2c30c2cd8d578b (diff) | |
download | afl++-38e6de1effbeb0e3deab08800c5d94c7a488648a.tar.gz |
portability: make new gcc-plugin compilable under Ubuntu 16.04 (gcc 5.4.0)
Diffstat (limited to 'GNUmakefile.gcc_plugin')
-rw-r--r-- | GNUmakefile.gcc_plugin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile.gcc_plugin b/GNUmakefile.gcc_plugin index b73fcfda..3575ff4a 100644 --- a/GNUmakefile.gcc_plugin +++ b/GNUmakefile.gcc_plugin @@ -36,7 +36,7 @@ CFLAGS_SAFE := -Wall -Iinclude -Wno-pointer-sign \ override CFLAGS += $(CFLAGS_SAFE) CXXFLAGS ?= -O3 -g -funroll-loops -D_FORTIFY_SOURCE=2 -CXXEFLAGS := $(CXXFLAGS) -Wall +CXXEFLAGS := $(CXXFLAGS) -Wall -std=c++11 CC ?= gcc CXX ?= g++ |