# HG changeset patch # User "Yann E. MORIN" # Date 1399808292 -7200 # Node ID ad14212ebf54d5a9ae07cf8f2f33ec7f47c11009 # Parent 4876ff97e0399f76b30a1f2266aa5a023495d02e 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" diff -r 4876ff97e039 -r ad14212ebf54 config/config.in --- a/config/config.in Fri May 09 19:13:49 2014 -0700 +++ b/config/config.in Sun May 11 13:38:12 2014 +0200 @@ -5,8 +5,8 @@ source "config/toolchain.in" source "config/kernel.in" source "config/binutils.in" +source "config/libc.in" source "config/cc.in" -source "config/libc.in" source "config/debug.in" source "config/companion_libs.in" source "config/companion_tools.in"