summaryrefslogtreecommitdiff
path: root/config/cc
diff options
context:
space:
mode:
authorBenoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>2011-05-31 14:27:39 (GMT)
committerBenoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>2011-05-31 14:27:39 (GMT)
commit96245813d8e81bc4534e810e5daab639468ac20c (patch)
treed111d40ece0ed422647b70d53c99eaad44f8749e /config/cc
parent8f32ebcc88e6597dc16e59789ca1f63909d28215 (diff)
kconfig: remove useless 'default n'
kconfig bools are disabled by default, so specifying 'default n' is useless and noisy. This patch removes all occurrences of 'default n'. Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'config/cc')
-rw-r--r--config/cc/gcc.in16
-rw-r--r--config/cc/gcc.in.24
2 files changed, 0 insertions, 20 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in
index 6f64f87..bc56ef6 100644
--- a/config/cc/gcc.in
+++ b/config/cc/gcc.in
@@ -186,39 +186,32 @@ endchoice
config CC_GCC_4_2
bool
- default n
select CC_GCC_4_2_or_later
config CC_GCC_4_2_or_later
bool
- default n
config CC_GCC_4_3
bool
- default n
select CC_GCC_4_3_or_later
select CC_GCC_USE_GMP_MPFR
config CC_GCC_4_3_or_later
bool
- default n
select CC_GCC_4_2_or_later
config CC_GCC_4_4
bool
- default n
select CC_GCC_4_4_or_later
select CC_GCC_USE_GMP_MPFR
select CC_GCC_HAS_GRAPHITE
config CC_GCC_4_4_or_later
bool
- default n
select CC_GCC_4_3_or_later
config CC_GCC_4_5
bool
- default n
select CC_GCC_4_5_or_later
select CC_GCC_USE_GMP_MPFR
select CC_GCC_USE_MPC
@@ -227,12 +220,10 @@ config CC_GCC_4_5
config CC_GCC_4_5_or_later
bool
- default n
select CC_GCC_4_4_or_later
config CC_GCC_4_6
bool
- default n
select CC_GCC_4_6_or_later
select CC_GCC_USE_GMP_MPFR
select CC_GCC_USE_MPC
@@ -241,12 +232,10 @@ config CC_GCC_4_6
config CC_GCC_4_6_or_later
bool
- default n
select CC_GCC_4_5_or_later
config CC_GCC_HAS_GRAPHITE
bool
- default n
# The way LTO works is a bit twisted.
# See: http://gcc.gnu.org/wiki/LinkTimeOptimization#Requirements
@@ -258,7 +247,6 @@ config CC_GCC_HAS_GRAPHITE
# advantage of it
config CC_GCC_HAS_LTO
bool
- default n
# Only enable gcc's support for plugins if binutils has it as well
# They are usefull only when doing LTO, but it does no harm enabling
@@ -277,24 +265,20 @@ config CC_GCC_GOLD
config CC_GCC_USE_GMP_MPFR
bool
- default n
select GMP_NEEDED
select MPFR_NEEDED
config CC_GCC_USE_PPL_CLOOG
bool
- default n
select PPL_NEEDED
select CLOOG_NEEDED
config CC_GCC_USE_MPC
bool
- default n
select MPC_NEEDED
config CC_GCC_USE_LIBELF
bool
- default n
select LIBELF_NEEDED
config CC_VERSION
diff --git a/config/cc/gcc.in.2 b/config/cc/gcc.in.2
index 481c570..e774b95 100644
--- a/config/cc/gcc.in.2
+++ b/config/cc/gcc.in.2
@@ -129,7 +129,6 @@ config CC_GCC_ENABLE_TARGET_OPTSPACE
config CC_GCC_LIBMUDFLAP
bool
prompt "Compile libmudflap"
- default n
help
libmudflap is a pointer-use checking tool, which can detect
various mis-usages of pointers in C and (to some extents) C++.
@@ -143,7 +142,6 @@ config CC_GCC_LIBMUDFLAP
config CC_GCC_LIBGOMP
bool
prompt "Compile libgomp"
- default n
help
libgomp is "the GNU implementation of the OpenMP Application Programming
Interface (API) for multi-platform shared-memory parallel programming in
@@ -155,7 +153,6 @@ config CC_GCC_LIBGOMP
config CC_GCC_LIBSSP
bool
prompt "Compile libssp"
- default n
help
libssp is the run-time Stack-Smashing Protection library.
@@ -177,7 +174,6 @@ config CC_CXA_ATEXIT
config CC_GCC_DISABLE_PCH
bool
prompt "Do not build PCH"
- default n
help
Say 'y' here to not use Pre-Compiled Headers in the resulting toolchain.
at the expense of speed when compiling C++ code.