From 87af0b08d9b3825a15d7e86096f423814e54aa0c Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Mon, 13 Jan 2025 14:03:17 +0100 Subject: [PATCH] toolchain/toolchain-external/toolchain-external-arm-arm: fix BR2_ARCH_NEEDS_GCC_AT_LEAST_X guard BR2_ARCH_NEEDS_GCC_AT_LEAST_X guards has been introduced by [1] to prevent selecting an external toolchain that did not support the GCC arch tuning the user had selected. But it was not updated while updating to version 13.2-rel1. Fixes: 0dd599d171df7852ae801173c8212976e50b09e1 [1] eed1670d8a6f0899f5fdfc26bd6d1609ebc19c7a Cc: Antoine Coutant Signed-off-by: Romain Naour Signed-off-by: Julien Olivain (cherry picked from commit 203abefcf6c0ca54d28523bcd8ac7c56c249fefe) Signed-off-by: Peter Korsgaard --- .../toolchain-external/toolchain-external-arm-arm/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/toolchain-external/toolchain-external-arm-arm/Config.in b/toolchain/toolchain-external/toolchain-external-arm-arm/Config.in index bee8d61164..49aee3228f 100644 --- a/toolchain/toolchain-external/toolchain-external-arm-arm/Config.in +++ b/toolchain/toolchain-external/toolchain-external-arm-arm/Config.in @@ -9,7 +9,7 @@ config BR2_TOOLCHAIN_EXTERNAL_ARM_ARM depends on BR2_ARM_CPU_HAS_NEON depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "aarch64" depends on BR2_ARM_EABIHF - depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_13 + depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_14 select BR2_TOOLCHAIN_EXTERNAL_GLIBC select BR2_TOOLCHAIN_HAS_SSP select BR2_INSTALL_LIBSTDCPP