mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-24 12:19:49 +00:00
- warn a bit more verbosely about fmt stuff for non-release versions
This commit is contained in:
parent
6018225238
commit
abaef6565e
@ -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,)
|
||||
|
Loading…
Reference in New Issue
Block a user