- warn a bit more verbosely about fmt stuff for non-release versions

This commit is contained in:
Bernhard Reutner-Fischer 2006-03-29 22:28:27 +00:00
parent 6018225238
commit abaef6565e

View File

@ -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,)