[Buildroot] [git commit] package/gcc/Config.in.host: fix BR2_GCC_VERSION_ARC select of BR2_TOOLCHAIN_GCC_AT_LEAST_xyz

Yann E. MORIN yann.morin.1998 at free.fr
Tue Dec 28 20:42:19 UTC 2021


commit: https://git.buildroot.net/buildroot/commit/?id=81662cf228290f4abd72243730156baabb8b91c9
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

When the gcc arc version was bumped to a version using gcc
10.x (arc-2020.09-release) in commit 0791abfba022 (toolchain: update ARC
tools to arc-2020.09-release), the select of BR2_GCC_VERSION_ARC on the
appropriate BR2_TOOLCHAIN_GCC_AT_LEAST_xyz was not updated.

Commit 0b4c7ba01cfe (toolchain: update option descriptions for ARC tools
arc-2020.09-release) fixed the prompt, but still forgot to update the
appropriate BR2_TOOLCHAIN_GCC_AT_LEAST_xyz.

This commit eventually fixes this issue.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998 at free.fr>
---
 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"



More information about the buildroot mailing list