config: fix CONFIG_GDB appearing in main menuconfig menu
authorRobert Marko <robimarko@gmail.com>
Mon, 8 Apr 2024 20:05:19 +0000 (22:05 +0200)
committerRobert Marko <robimarko@gmail.com>
Tue, 9 Apr 2024 17:30:41 +0000 (19:30 +0200)
I noticed that CONFIG_GDB was suddenly appearing in the main menuconfig
menu despite the fact that it should be visible only when TOOLCHAINOPTS
is selected and under a dedicated menu.

After some trial and error, it seems that this was caused by the recent
addition of GCC_USE_DEFAULT_VERSION, and after even more trial and error
it gets fixed as soon GCC_USE_DEFAULT_VERSION is placed after GCC_VERSION.

So, lets simply put GCC_USE_DEFAULT_VERSION after GCC_VERSION.

Fixes: 501ef81040ba ("config: select KERNEL_WERROR if building with default GCC version")
Signed-off-by: Robert Marko <robimarko@gmail.com>
toolchain/gcc/Config.in
toolchain/gcc/Config.version

index fd98914075524cdb4e6fd3b479bc30e120d9eb66..85abbdabb7ac54d544b3e5d79c37d310860e679f 100644 (file)
@@ -16,11 +16,6 @@ choice
                bool "gcc 13.x"
 endchoice
 
-config GCC_USE_DEFAULT_VERSION
-       bool
-       default y if !TOOLCHAINOPTS || GCC_USE_VERSION_13
-       imply KERNEL_WERROR
-
 config GCC_USE_GRAPHITE
        bool
        prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
index 54bb4445b3d127dc54ce6e6b43c1587d5e310fd4..fe956d65b7736a47b3287f8559601bcc64135cfc 100644 (file)
@@ -12,3 +12,8 @@ config GCC_VERSION
        default "11.3.0"        if GCC_VERSION_11
        default "12.3.0"        if GCC_VERSION_12
        default "13.2.0"
+
+config GCC_USE_DEFAULT_VERSION
+       bool
+       default y if !TOOLCHAINOPTS || GCC_USE_VERSION_13
+       imply KERNEL_WERROR