diff options
author | 2019-06-20 12:07:14 +0200 | |
---|---|---|
committer | 2019-06-22 21:31:49 +0200 | |
commit | c389e162784d49b731f4aec5dedcc87e7583cbda (patch) | |
tree | 5b91d0d58bbc25c0d52364162cd3147951e470bf /toolchain | |
parent | 08d25f394266eea15c64ed5c583d6af86103166f (diff) | |
download | buildroot-c389e162784d49b731f4aec5dedcc87e7583cbda.tar.gz buildroot-c389e162784d49b731f4aec5dedcc87e7583cbda.tar.bz2 |
toolchain: add gcc 9 entry
In order to add gcc 9 support for internal and external toolchain in
follow-up commits, introduce BR2_TOOLCHAIN_GCC_AT_LEAST_9 symbol.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index 82d2658a1d..db3ce3cf24 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -521,10 +521,15 @@ config BR2_TOOLCHAIN_GCC_AT_LEAST_8 bool select BR2_TOOLCHAIN_GCC_AT_LEAST_7 +config BR2_TOOLCHAIN_GCC_AT_LEAST_9 + bool + select BR2_TOOLCHAIN_GCC_AT_LEAST_8 + # 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 "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 default "6" if BR2_TOOLCHAIN_GCC_AT_LEAST_6 |