diff options
-rw-r--r-- | Makefile.flags | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.flags b/Makefile.flags index c9b713b02..e73cf9d31 100644 --- a/Makefile.flags +++ b/Makefile.flags | |||
@@ -28,6 +28,9 @@ CFLAGS += $(call cc-option,-Wundef -Wstrict-prototypes,) | |||
28 | 28 | ||
29 | ifeq ($(CONFIG_WERROR),y) | 29 | ifeq ($(CONFIG_WERROR),y) |
30 | CFLAGS += $(call cc-option,-Werror,) | 30 | CFLAGS += $(call cc-option,-Werror,) |
31 | else | ||
32 | # for development, warn a little bit about unused results.. | ||
33 | CPPFLAGS += -D_FORTIFY_SOURCE=2 | ||
31 | endif | 34 | endif |
32 | # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action() | 35 | # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action() |
33 | CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition) | 36 | CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition) |