From 7f834a9fbcd75755e15847b3b0af273acd382d47 Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Tue, 9 Jun 2020 00:13:43 +0200 Subject: [PATCH] toolchain/Config.in: add BR2_TOOLCHAIN_GCC_AT_LEAST_10 blind option In order to add gcc 10 support for internal and external toolchain in follow-up commits, introduce BR2_TOOLCHAIN_GCC_AT_LEAST_10 symbol. Signed-off-by: Romain Naour 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 6865199ffc..83f5286701 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -591,10 +591,15 @@ config BR2_TOOLCHAIN_GCC_AT_LEAST_9 bool select BR2_TOOLCHAIN_GCC_AT_LEAST_8 +config BR2_TOOLCHAIN_GCC_AT_LEAST_10 + bool + select BR2_TOOLCHAIN_GCC_AT_LEAST_9 + # 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 "10" if BR2_TOOLCHAIN_GCC_AT_LEAST_10 default "9" if BR2_TOOLCHAIN_GCC_AT_LEAST_9 default "8" if BR2_TOOLCHAIN_GCC_AT_LEAST_8 default "7" if BR2_TOOLCHAIN_GCC_AT_LEAST_7 -- 2.30.2