From ccf17145024fff8d56f5240227c8df0c233b12fc Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Fri, 25 Apr 2025 22:18:15 +0200 Subject: [PATCH] toolchain/Config.in: add BR2_TOOLCHAIN_GCC_AT_LEAST_15 blind option In order to add gcc 15 support in follow-up commits, introduce BR2_TOOLCHAIN_GCC_AT_LEAST_15 symbol. Signed-off-by: Thomas Petazzoni 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 89eaa7b618..3063bae2b6 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -811,10 +811,15 @@ config BR2_TOOLCHAIN_GCC_AT_LEAST_14 bool select BR2_TOOLCHAIN_GCC_AT_LEAST_13 +config BR2_TOOLCHAIN_GCC_AT_LEAST_15 + bool + select BR2_TOOLCHAIN_GCC_AT_LEAST_14 + # 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 "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 default "12" if BR2_TOOLCHAIN_GCC_AT_LEAST_12