Browse Source

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

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>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Thomas Petazzoni 1 year ago
parent
commit
5dd2672009
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/gcc/Config.in.host

+ 1 - 1
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"