From 5e050a8849b74636682913f6ad57b0b052c0bb51 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" Date: Wed, 6 Oct 2021 22:41:33 +0200 Subject: [PATCH] Config.in: move toolchain menu before build options Many of the build options depend on the toolchain configuration. In addition, it's pretty logical that you select first target architecture, then the toolchain, and only then things like debug and pic/pie. Therefore, move the "Toolchain" menu before the "Build options" menu instead of after. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Thomas Petazzoni --- Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Config.in b/Config.in index 28406b08de..3c57c591a8 100644 --- a/Config.in +++ b/Config.in @@ -87,6 +87,8 @@ config BR2_NEEDS_HOST_GCC_PLUGIN_SUPPORT source "arch/Config.in" +source "toolchain/Config.in" + menu "Build options" menu "Commands" @@ -934,8 +936,6 @@ comment "Fortify Source needs a glibc toolchain and optimization" depends on (!BR2_TOOLCHAIN_USES_GLIBC || BR2_OPTIMIZE_0) endmenu -source "toolchain/Config.in" - source "system/Config.in" source "linux/Config.in"