summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@free.fr>2014-05-11 11:38:12 (GMT)
committerYann E. MORIN" <yann.morin.1998@free.fr>2014-05-11 11:38:12 (GMT)
commitdd60b1fa9dbb917938fc8c21934ce036cfa78fe5 (patch)
treec29bf03054205f5529441653f1782d4ba3a5cb93 /config
parentdb2872f2acda564162814d54aea6db8bb116cb73 (diff)
config: switch cc with libc in the config order
Some of the compiler options depend on the C library choice, (e.g. whether core passes are needed). Since the compiler menu comes before the C library menu, those options may or may not be visible until the C library is chosen, leading to either options being visible by the user (thus be puzzling as they would not apply to his case), or invisible to him (yet again puzzling him). Invert the order of the compiler and the C library in the menuconfig. It anyway looks more rational, in the end. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'config')
-rw-r--r--config/config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.in b/config/config.in
index 8a88fef..885f722 100644
--- a/config/config.in
+++ b/config/config.in
@@ -5,8 +5,8 @@ source "config/target.in"
source "config/toolchain.in"
source "config/kernel.in"
source "config/binutils.in"
-source "config/cc.in"
source "config/libc.in"
+source "config/cc.in"
source "config/debug.in"
source "config/companion_libs.in"
source "config/companion_tools.in"