Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-27 16:44:53 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-27 16:44:53 +0300
commite0eebc1ef3816bd75988021376a368dfe19470c5 (patch)
tree0008d612e2c7a07f858e4729589e215f20a542e0 /Config.in
parentfd94efa41f6a37221c68d4c0ed12f4883d2069ba (diff)
Make -Werror configurable
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in25
1 files changed, 17 insertions, 8 deletions
diff --git a/Config.in b/Config.in
index 499233bc1..c5f8b3c0f 100644
--- a/Config.in
+++ b/Config.in
@@ -352,16 +352,25 @@ config DEBUG
Most people should answer N.
-config DEBUG_PESSIMIZE
- bool "Disable compiler optimizations."
+config WERROR
+ bool "Abort compilation on any warning"
default n
- depends on DEBUG
help
- The compiler's optimization of source code can eliminate and reorder
- code, resulting in an executable that's hard to understand when
- stepping through it with a debugger. This switches it off, resulting
- in a much bigger executable that more closely matches the source
- code.
+ Selecting this will add -Werror to gcc command line.
+
+ Most people should answer N.
+
+# Seems to be unused
+#config DEBUG_PESSIMIZE
+# bool "Disable compiler optimizations."
+# default n
+# depends on DEBUG
+# help
+# The compiler's optimization of source code can eliminate and reorder
+# code, resulting in an executable that's hard to understand when
+# stepping through it with a debugger. This switches it off, resulting
+# in a much bigger executable that more closely matches the source
+# code.
choice
prompt "Additional debugging library"