diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-27 13:44:53 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-27 13:44:53 +0000 |
commit | 69e8ed8551f6ba8546734c15f0e9704c4279adc5 (patch) | |
tree | 0008d612e2c7a07f858e4729589e215f20a542e0 | |
parent | bcb5898fc889e62cc1ff34ae9c927b6a22f14ed8 (diff) | |
download | busybox-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
-rw-r--r-- | Config.in | 25 | ||||
-rw-r--r-- | Makefile.flags | 9 | ||||
-rw-r--r-- | scripts/defconfig | 2 |
3 files changed, 25 insertions, 11 deletions
@@ -352,16 +352,25 @@ config DEBUG | |||
352 | 352 | ||
353 | Most people should answer N. | 353 | Most people should answer N. |
354 | 354 | ||
355 | config DEBUG_PESSIMIZE | 355 | config WERROR |
356 | bool "Disable compiler optimizations." | 356 | bool "Abort compilation on any warning" |
357 | default n | 357 | default n |
358 | depends on DEBUG | ||
359 | help | 358 | help |
360 | The compiler's optimization of source code can eliminate and reorder | 359 | Selecting this will add -Werror to gcc command line. |
361 | code, resulting in an executable that's hard to understand when | 360 | |
362 | stepping through it with a debugger. This switches it off, resulting | 361 | Most people should answer N. |
363 | in a much bigger executable that more closely matches the source | 362 | |
364 | code. | 363 | # Seems to be unused |
364 | #config DEBUG_PESSIMIZE | ||
365 | # bool "Disable compiler optimizations." | ||
366 | # default n | ||
367 | # depends on DEBUG | ||
368 | # help | ||
369 | # The compiler's optimization of source code can eliminate and reorder | ||
370 | # code, resulting in an executable that's hard to understand when | ||
371 | # stepping through it with a debugger. This switches it off, resulting | ||
372 | # in a much bigger executable that more closely matches the source | ||
373 | # code. | ||
365 | 374 | ||
366 | choice | 375 | choice |
367 | prompt "Additional debugging library" | 376 | prompt "Additional debugging library" |
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.. |
19 | CFLAGS += $(call cc-option,-Wall -Wshadow,) | 19 | CFLAGS += $(call cc-option,-Wall -Wshadow,) |
20 | ifeq ($(CONFIG_WERROR),y) | ||
21 | CFLAGS += $(call cc-option,-Werror,) | ||
22 | endif | ||
20 | CFLAGS += $(call cc-option,-Wundef -Wold-style-definition -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations,) | 23 | CFLAGS += $(call cc-option,-Wundef -Wold-style-definition -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations,) |
21 | CFLAGS += $(call cc-option,-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,) | 24 | CFLAGS += $(call cc-option,-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections,) |
22 | CFLAGS += $(call cc-option,-static-libgcc -funsigned-char,) | 25 | # -fno-guess-branch-probability: prohibit pseudo-random guessing |
23 | CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-loops=1,) | 26 | # of branch probabilities (hopefully makes bloatcheck more stable) |
27 | CFLAGS += $(call cc-option,-funsigned-char -fno-guess-branch-probability -static-libgcc,) | ||
28 | CFLAGS += $(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.. |
diff --git a/scripts/defconfig b/scripts/defconfig index ed9959985..a3e59c8aa 100644 --- a/scripts/defconfig +++ b/scripts/defconfig | |||
@@ -45,7 +45,7 @@ CONFIG_LFS=y | |||
45 | # Debugging Options | 45 | # Debugging Options |
46 | # | 46 | # |
47 | # CONFIG_DEBUG is not set | 47 | # CONFIG_DEBUG is not set |
48 | # CONFIG_DEBUG_PESSIMIZE is not set | 48 | # CONFIG_WERROR is not set |
49 | # CONFIG_NO_DEBUG_LIB is not set | 49 | # CONFIG_NO_DEBUG_LIB is not set |
50 | # CONFIG_DMALLOC is not set | 50 | # CONFIG_DMALLOC is not set |
51 | # CONFIG_EFENCE is not set | 51 | # CONFIG_EFENCE is not set |