diff mbox series

package/gcc: fix BR2_GCC_VERSION_ARC definition for gcc 13.x

Message ID 20240303141003.173987-1-thomas.petazzoni@bootlin.com
State Accepted
Headers show
Series package/gcc: fix BR2_GCC_VERSION_ARC definition for gcc 13.x | expand

Commit Message

Thomas Petazzoni March 3, 2024, 2:10 p.m. UTC
Since the ARC-special GCC version was bumped from gcc 10.x to gcc 13.x
in commit 045ab73702b8bc09f94ca1f3b8e5bf3acb0b0843 ("toolchain: bump
ARC toolchain components to arc-2023.09-release"), the
BR2_GCC_VERSION_ARC option definition is not entirely correct: it
selects BR2_TOOLCHAIN_GCC_AT_LEAST_10, while it should select
BR2_TOOLCHAIN_GCC_AT_LEAST_13. This commit fixes this.

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

Comments

Yann E. MORIN March 3, 2024, 4:08 p.m. UTC | #1
Thomas, All,

On 2024-03-03 15:10 +0100, Thomas Petazzoni via buildroot spake thusly:
> Since the ARC-special GCC version was bumped from gcc 10.x to gcc 13.x
> in commit 045ab73702b8bc09f94ca1f3b8e5bf3acb0b0843 ("toolchain: bump
> ARC toolchain components to arc-2023.09-release"), the
> BR2_GCC_VERSION_ARC option definition is not entirely correct: it
> selects BR2_TOOLCHAIN_GCC_AT_LEAST_10, while it should select
> BR2_TOOLCHAIN_GCC_AT_LEAST_13. This commit fixes this.
> 
> Cc: Alexey Brodkin <Alexey.Brodkin@synopsys.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  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 fabc6173f5..d294e8da30 100644
> --- a/package/gcc/Config.in.host
> +++ b/package/gcc/Config.in.host
> @@ -13,7 +13,7 @@ config BR2_GCC_VERSION_ARC
>  	bool "gcc arc (13.1)"
>  	# Only supported architecture
>  	depends on BR2_arc
> -	select BR2_TOOLCHAIN_GCC_AT_LEAST_10
> +	select BR2_TOOLCHAIN_GCC_AT_LEAST_13
>  
>  config BR2_GCC_VERSION_POWERPC_SPE
>  	bool "gcc powerpc spe"
> -- 
> 2.43.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
diff mbox series

Patch

diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
index fabc6173f5..d294e8da30 100644
--- a/package/gcc/Config.in.host
+++ b/package/gcc/Config.in.host
@@ -13,7 +13,7 @@  config BR2_GCC_VERSION_ARC
 	bool "gcc arc (13.1)"
 	# Only supported architecture
 	depends on BR2_arc
-	select BR2_TOOLCHAIN_GCC_AT_LEAST_10
+	select BR2_TOOLCHAIN_GCC_AT_LEAST_13
 
 config BR2_GCC_VERSION_POWERPC_SPE
 	bool "gcc powerpc spe"