aboutsummaryrefslogtreecommitdiff
path: root/Makefile.flags
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-27 13:44:53 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-27 13:44:53 +0000
commit69e8ed8551f6ba8546734c15f0e9704c4279adc5 (patch)
tree0008d612e2c7a07f858e4729589e215f20a542e0 /Makefile.flags
parentbcb5898fc889e62cc1ff34ae9c927b6a22f14ed8 (diff)
downloadbusybox-w32-69e8ed8551f6ba8546734c15f0e9704c4279adc5.tar.gz
busybox-w32-69e8ed8551f6ba8546734c15f0e9704c4279adc5.tar.bz2
busybox-w32-69e8ed8551f6ba8546734c15f0e9704c4279adc5.zip
Make -Werror configurable
git-svn-id: svn://busybox.net/trunk/busybox@17551 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile.flags')
-rw-r--r--Makefile.flags9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.flags b/Makefile.flags
index 8f6d0c9bd..cec73df8f 100644
--- a/Makefile.flags
+++ b/Makefile.flags
@@ -17,10 +17,15 @@ CPPFLAGS += \
17 17
18# flag checks are grouped together to speed the checks up a bit.. 18# flag checks are grouped together to speed the checks up a bit..
19CFLAGS += $(call cc-option,-Wall -Wshadow,) 19CFLAGS += $(call cc-option,-Wall -Wshadow,)
20ifeq ($(CONFIG_WERROR),y)
21CFLAGS += $(call cc-option,-Werror,)
22endif
20CFLAGS += $(call cc-option,-Wundef -Wold-style-definition -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations,) 23CFLAGS += $(call cc-option,-Wundef -Wold-style-definition -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations,)
21CFLAGS += $(call cc-option,-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,) 24CFLAGS += $(call cc-option,-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,)
22CFLAGS += $(call cc-option,-static-libgcc -funsigned-char,) 25# -fno-guess-branch-probability: prohibit pseudo-random guessing
23CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-loops=1,) 26# of branch probabilities (hopefully makes bloatcheck more stable)
27CFLAGS += $(call cc-option,-funsigned-char -fno-guess-branch-probability -static-libgcc,)
28CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,)
24 29
25# FIXME: These warnings are at least partially to be concerned about and should 30# FIXME: These warnings are at least partially to be concerned about and should
26# be fixed.. 31# be fixed..