diff options
author | Bernhard Reutner-Fischer | 2006-03-29 22:28:27 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2006-03-29 22:28:27 +0000 |
commit | abaef6565e03b03fb750c7935737fd0309395729 (patch) | |
tree | 2d9dff88b5ee48cff7d651b332de29c80d41d57f | |
parent | 601822523886d84ffc5a256f07385ce1e9e0d0d6 (diff) | |
download | busybox-abaef6565e03b03fb750c7935737fd0309395729.zip busybox-abaef6565e03b03fb750c7935737fd0309395729.tar.gz |
- 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 LDFLAGS += $(call check_ld,--warn-common,) LDFLAGS += $(call check_ld,--sort-common,) endif +# warn a bit more verbosely for non-release versions +ifneq ($(EXTRAVERSION),) + CFLAGS+=$(call check_gcc,-Wformat,) + CFLAGS+=$(call check_gcc,-Wformat=2,) + CFLAGS+=$(call check_gcc,-Wformat-nonliteral,) + CFLAGS+=$(call check_gcc,-Wformat-security,) + CFLAGS+=$(call check_gcc,-Wformat-y2k,) +endif STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment ifeq ($(strip $(CONFIG_STATIC)),y) PROG_CFLAGS += $(call check_gcc,-static,) |