aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-08-05 01:43:07 -0400
committerMichal Marek <mmarek@suse.cz>2015-01-08 08:53:50 -0500
commit31a4af7f7d3cd3090c1c9201d62d4ede54dc5969 (patch)
treec884d770d78c4692d8b5b8c6d997088f052bb0d5
parent976591810f8aa2f57c647c6485112b7c62f832ae (diff)
kbuild: trivial - fix the help doc of CONFIG_CC_OPTIMIZE_FOR_SIZE
Other than GCC, we have another choice, Clang for building the kernel these days. It seems better to say "compiler" rather than "gcc". Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
-rw-r--r--init/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/init/Kconfig b/init/Kconfig
index 9afb971497f4..513586facb2b 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -1299,8 +1299,8 @@ config INIT_FALLBACK
1299config CC_OPTIMIZE_FOR_SIZE 1299config CC_OPTIMIZE_FOR_SIZE
1300 bool "Optimize for size" 1300 bool "Optimize for size"
1301 help 1301 help
1302 Enabling this option will pass "-Os" instead of "-O2" to gcc 1302 Enabling this option will pass "-Os" instead of "-O2" to
1303 resulting in a smaller kernel. 1303 your compiler resulting in a smaller kernel.
1304 1304
1305 If unsure, say N. 1305 If unsure, say N.
1306 1306