diff options
author | Romain Naour <romain.naour@gmail.com> | 2018-05-29 23:52:54 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-05-30 21:44:12 +0200 |
commit | 0eb91bf1d1a716e2345d68ef4bc18c03f092cf93 (patch) | |
tree | a1b78ae934f3fbc2d80c9aa8e7ed5874cbd5165a | |
parent | c9216bc1d01983be22ce2119efb98b5684cd714a (diff) | |
download | buildroot-0eb91bf1d1a716e2345d68ef4bc18c03f092cf93.tar.gz buildroot-0eb91bf1d1a716e2345d68ef4bc18c03f092cf93.zip |
toolchain: add gcc 8 entry
In order to add gcc 8 support for internal and external toolchain in
follow-up commits, introduce BR2_TOOLCHAIN_GCC_AT_LEAST_8 symbol.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-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 77f95ee1c3..064bd4c28c 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -404,10 +404,15 @@ config BR2_TOOLCHAIN_GCC_AT_LEAST_7 bool select BR2_TOOLCHAIN_GCC_AT_LEAST_6 +config BR2_TOOLCHAIN_GCC_AT_LEAST_8 + bool + select BR2_TOOLCHAIN_GCC_AT_LEAST_7 + # 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 "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 default "5" if BR2_TOOLCHAIN_GCC_AT_LEAST_5 |