aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang Schupp <w.schupp@a1.net>2015-07-09 22:02:03 +0200
committerWolfgang Schupp <w.schupp@a1.net>2015-07-09 22:02:03 +0200
commita6c686ba58a8aded6ad1db6ae6699d0719a2554b (patch)
treebb43b302bc4dcfe786ec9cf7f9db0a7d36b4dad7
parent41b4a2c2f2289851eb978a39e597343da9dfa725 (diff)
parent0d971d83bc0ad10d09da9c98e8540bdfc6f26890 (diff)
Merge pull request #7229 from atupone/CPPFLAGS
Inject CPPFLAGS (e.g. to disable FORTIFY)
-rw-r--r--Makefile.include.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.include.in b/Makefile.include.in
index 782dc07b31..1720848a32 100644
--- a/Makefile.include.in
+++ b/Makefile.include.in
@@ -91,22 +91,22 @@ GEN_DEPS=\
%.o: %.cpp
@rm -f $@
- $(SILENT_CPP) $(CXX) -MF $*.d -MD -c $(CXXFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
+ $(SILENT_CPP) $(CXX) -MF $*.d -MD -c $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(CPPFLAGS) $< -o $@ \
&& $(GEN_DEPS)
%.o: %.cc
@rm -f $@
- $(SILENT_CPP) $(CXX) -MF $*.d -MD -c $(CXXFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
+ $(SILENT_CPP) $(CXX) -MF $*.d -MD -c $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(CPPFLAGS) $< -o $@ \
&& $(GEN_DEPS)
%.o: %.c
@rm -f $@
- $(SILENT_CC) $(CC) -MF $*.d -MD -c $(CFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
+ $(SILENT_CC) $(CC) -MF $*.d -MD -c $(CFLAGS) $(DEFINES) $(INCLUDES) $(CPPFLAGS) $< -o $@ \
&& $(GEN_DEPS)
%.o: %.C
@rm -f $@
- $(SILENT_CPP) $(CXX) -MF $*.d -MD -c $(CFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
+ $(SILENT_CPP) $(CXX) -MF $*.d -MD -c $(CFLAGS) $(DEFINES) $(INCLUDES) $(CPPFLAGS) $< -o $@ \
&& $(GEN_DEPS)
%.o: %.S