about summary refs log tree commit diff
path: root/GNUmakefile.gcc_plugin
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2023-08-01 09:55:10 +0200
committerGitHub <noreply@github.com>2023-08-01 09:55:10 +0200
commit0265b39c138e1451accc048d3442a1e15d7ae86c (patch)
tree6874ae802a5df27c0ce3029feafa1525f3c0bfc8 /GNUmakefile.gcc_plugin
parentf75c4303654602442987b9a653e5ad3af4974b43 (diff)
parent82635dc6569d84899147b2487f19ebe3eaee92b2 (diff)
downloadafl++-0265b39c138e1451accc048d3442a1e15d7ae86c.tar.gz
Merge pull request #1819 from jschwartzentruber/cxx-use-cppflags
C++ compilation should use CPPFLAGS
Diffstat (limited to 'GNUmakefile.gcc_plugin')
-rw-r--r--GNUmakefile.gcc_plugin2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile.gcc_plugin b/GNUmakefile.gcc_plugin
index 29d0ed9d..a90b02ea 100644
--- a/GNUmakefile.gcc_plugin
+++ b/GNUmakefile.gcc_plugin
@@ -38,7 +38,7 @@ override CFLAGS += $(CFLAGS_SAFE)
 
 CXXFLAGS    ?= -O3 -g -funroll-loops
 # -D_FORTIFY_SOURCE=1
-CXXEFLAGS   := $(CXXFLAGS) -Wall -std=c++11
+CXXEFLAGS   := $(CXXFLAGS) $(CPPFLAGS) -Wall -std=c++11
 
 CC          ?= gcc
 CXX         ?= g++