From 1c7f6a44579a4defc5126528bc4f93c99d14d104 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 11 May 2024 22:22:19 +0200 Subject: [PATCH] toolchain/Config.in: add BR2_TOOLCHAIN_GCC_AT_LEAST_14 blind option In order to add gcc 14 support in follow-up commits, introduce BR2_TOOLCHAIN_GCC_AT_LEAST_13 symbol. Signed-off-by: Thomas Petazzoni --- toolchain/Config.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/toolchain/Config.in b/toolchain/Config.in index 944e573f82..655f1a53dc 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -795,10 +795,15 @@ config BR2_TOOLCHAIN_GCC_AT_LEAST_13 bool select BR2_TOOLCHAIN_GCC_AT_LEAST_12 +config BR2_TOOLCHAIN_GCC_AT_LEAST_14 + bool + select BR2_TOOLCHAIN_GCC_AT_LEAST_13 + # 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 "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 default "11" if BR2_TOOLCHAIN_GCC_AT_LEAST_11