From b3329ed3e027f7a57f5b96a2a842643bebbee693 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Wed, 6 May 2026 18:31:29 +0200 Subject: [PATCH] toolchain/Config.in: add BR2_TOOLCHAIN_GCC_AT_LEAST_16 blind option In order to add gcc 16 support in follow-up commits, introduce BR2_TOOLCHAIN_GCC_AT_LEAST_16 symbol. Signed-off-by: Bernd Kuhls Signed-off-by: Julien Olivain --- toolchain/Config.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/toolchain/Config.in b/toolchain/Config.in index 910cd103dc..5aa6cf8f6d 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -848,10 +848,15 @@ config BR2_TOOLCHAIN_GCC_AT_LEAST_15 bool select BR2_TOOLCHAIN_GCC_AT_LEAST_14 +config BR2_TOOLCHAIN_GCC_AT_LEAST_16 + bool + select BR2_TOOLCHAIN_GCC_AT_LEAST_15 + # This order guarantees that the highest version is set, as kconfig # stops affecting a value on the first matching default. config BR2_TOOLCHAIN_GCC_AT_LEAST string + default "16" if BR2_TOOLCHAIN_GCC_AT_LEAST_16 default "15" if BR2_TOOLCHAIN_GCC_AT_LEAST_15 default "14" if BR2_TOOLCHAIN_GCC_AT_LEAST_14 default "13" if BR2_TOOLCHAIN_GCC_AT_LEAST_13