diff mbox series

[v4,04/15] toolchain: add gcc 9 entry

Message ID 20190620100725.105587-5-giulio.benetti@micronovasrl.com
State Accepted
Headers show
Series Add gcc 9.1 | expand

Commit Message

Giulio Benetti June 20, 2019, 10:07 a.m. UTC
From: Romain Naour <romain.naour@gmail.com>

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>
---
 toolchain/Config.in | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Thomas Petazzoni June 22, 2019, 7:39 p.m. UTC | #1
On Thu, 20 Jun 2019 12:07:14 +0200
Giulio Benetti <giulio.benetti@micronovasrl.com> wrote:

> From: Romain Naour <romain.naour@gmail.com>
> 
> 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>
> ---
>  toolchain/Config.in | 5 +++++
>  1 file changed, 5 insertions(+)

Applied to master, thanks.

Thomas
diff mbox series

Patch

diff --git a/toolchain/Config.in b/toolchain/Config.in
index 2da537e7d4..7726ae6fae 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -507,10 +507,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