diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-29 22:28:27 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-29 22:28:27 +0000 |
commit | abaef6565e03b03fb750c7935737fd0309395729 (patch) | |
tree | 2d9dff88b5ee48cff7d651b332de29c80d41d57f | |
parent | 601822523886d84ffc5a256f07385ce1e9e0d0d6 (diff) | |
download | busybox-w32-abaef6565e03b03fb750c7935737fd0309395729.tar.gz busybox-w32-abaef6565e03b03fb750c7935737fd0309395729.tar.bz2 busybox-w32-abaef6565e03b03fb750c7935737fd0309395729.zip |
- warn a bit more verbosely about fmt stuff for non-release versions
-rw-r--r-- | Rules.mak | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -196,6 +196,14 @@ else | |||
196 | LDFLAGS += $(call check_ld,--warn-common,) | 196 | LDFLAGS += $(call check_ld,--warn-common,) |
197 | LDFLAGS += $(call check_ld,--sort-common,) | 197 | LDFLAGS += $(call check_ld,--sort-common,) |
198 | endif | 198 | endif |
199 | # warn a bit more verbosely for non-release versions | ||
200 | ifneq ($(EXTRAVERSION),) | ||
201 | CFLAGS+=$(call check_gcc,-Wformat,) | ||
202 | CFLAGS+=$(call check_gcc,-Wformat=2,) | ||
203 | CFLAGS+=$(call check_gcc,-Wformat-nonliteral,) | ||
204 | CFLAGS+=$(call check_gcc,-Wformat-security,) | ||
205 | CFLAGS+=$(call check_gcc,-Wformat-y2k,) | ||
206 | endif | ||
199 | STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment | 207 | STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment |
200 | ifeq ($(strip $(CONFIG_STATIC)),y) | 208 | ifeq ($(strip $(CONFIG_STATIC)),y) |
201 | PROG_CFLAGS += $(call check_gcc,-static,) | 209 | PROG_CFLAGS += $(call check_gcc,-static,) |