All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/gcc/Config.in.host: fix BR2_GCC_VERSION_ARC select of BR2_TOOLCHAIN_GCC_AT_LEAST_xyz
@ 2021-12-27 21:58 Thomas Petazzoni
  2021-12-28 20:44 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2021-12-27 21:58 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Romain Naour, Thomas Petazzoni

When the gcc arc version was bumped to a version using gcc
10.x (arc-2020.09-release) in commit
0791abfba0227803b19895ea22326f4e17ac93dc, the select of
BR2_GCC_VERSION_ARC on the appropriate BR2_TOOLCHAIN_GCC_AT_LEAST_xyz
was not updated. This commit fixes this issue.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 package/gcc/Config.in.host | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
index aa2665cbee..a1fe192d3a 100644
--- a/package/gcc/Config.in.host
+++ b/package/gcc/Config.in.host
@@ -12,7 +12,7 @@ config BR2_GCC_VERSION_ARC
 	bool "gcc arc (10.x)"
 	# Only supported architecture
 	depends on BR2_arc
-	select BR2_TOOLCHAIN_GCC_AT_LEAST_9
+	select BR2_TOOLCHAIN_GCC_AT_LEAST_10
 
 config BR2_GCC_VERSION_POWERPC_SPE
 	bool "gcc powerpc spe"
-- 
2.31.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH] package/gcc/Config.in.host: fix BR2_GCC_VERSION_ARC select of BR2_TOOLCHAIN_GCC_AT_LEAST_xyz
  2021-12-27 21:58 [Buildroot] [PATCH] package/gcc/Config.in.host: fix BR2_GCC_VERSION_ARC select of BR2_TOOLCHAIN_GCC_AT_LEAST_xyz Thomas Petazzoni
@ 2021-12-28 20:44 ` Yann E. MORIN
  2022-01-25 18:06   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2021-12-28 20:44 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: Giulio Benetti, Romain Naour, buildroot

Thomas, All,

On 2021-12-27 22:58 +0100, Thomas Petazzoni spake thusly:
> When the gcc arc version was bumped to a version using gcc
> 10.x (arc-2020.09-release) in commit
> 0791abfba0227803b19895ea22326f4e17ac93dc, the select of
> BR2_GCC_VERSION_ARC on the appropriate BR2_TOOLCHAIN_GCC_AT_LEAST_xyz
> was not updated. This commit fixes this issue.

I've slightly rephrased the commit log to also add a reference to
0b4c7ba01cfe (toolchain: update option descriptions for ARC tools
arc-2020.09-release) which also missed updating the select.

Nice catch, applied to master, thanks.

Regards,
Yann E. MORIN.

> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> ---
>  package/gcc/Config.in.host | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
> index aa2665cbee..a1fe192d3a 100644
> --- a/package/gcc/Config.in.host
> +++ b/package/gcc/Config.in.host
> @@ -12,7 +12,7 @@ config BR2_GCC_VERSION_ARC
>  	bool "gcc arc (10.x)"
>  	# Only supported architecture
>  	depends on BR2_arc
> -	select BR2_TOOLCHAIN_GCC_AT_LEAST_9
> +	select BR2_TOOLCHAIN_GCC_AT_LEAST_10
>  
>  config BR2_GCC_VERSION_POWERPC_SPE
>  	bool "gcc powerpc spe"
> -- 
> 2.31.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH] package/gcc/Config.in.host: fix BR2_GCC_VERSION_ARC select of BR2_TOOLCHAIN_GCC_AT_LEAST_xyz
  2021-12-28 20:44 ` Yann E. MORIN
@ 2022-01-25 18:06   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-01-25 18:06 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: Giulio Benetti, Romain Naour, Thomas Petazzoni, buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > Thomas, All,
 > On 2021-12-27 22:58 +0100, Thomas Petazzoni spake thusly:
 >> When the gcc arc version was bumped to a version using gcc
 >> 10.x (arc-2020.09-release) in commit
 >> 0791abfba0227803b19895ea22326f4e17ac93dc, the select of
 >> BR2_GCC_VERSION_ARC on the appropriate BR2_TOOLCHAIN_GCC_AT_LEAST_xyz
 >> was not updated. This commit fixes this issue.

 > I've slightly rephrased the commit log to also add a reference to
 > 0b4c7ba01cfe (toolchain: update option descriptions for ARC tools
 > arc-2020.09-release) which also missed updating the select.

 > Nice catch, applied to master, thanks.

Committed to 2021.11.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-25 18:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-27 21:58 [Buildroot] [PATCH] package/gcc/Config.in.host: fix BR2_GCC_VERSION_ARC select of BR2_TOOLCHAIN_GCC_AT_LEAST_xyz Thomas Petazzoni
2021-12-28 20:44 ` Yann E. MORIN
2022-01-25 18:06   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.