From 947fc1b9d47329477e5a9771373981f387f37fd9 Mon Sep 17 00:00:00 2001 From: Yuriy Kolerov Date: Fri, 23 Aug 2024 18:25:47 +0300 Subject: [PATCH] package/glibc: drop support of ARC 7x0 targets Synopsys ARC 7x0 family is not supported by glibc. Thus, it is necessary to prevent selecting glibc while configuring for that processors family. Fixes: http://autobuild.buildroot.net/results/9f0a4d69aed71a840b1c278a9623c9687207ffc6/ http://autobuild.buildroot.org/results/fa9960365bd54872762d5e959b98882b86c5e956/ Signed-off-by: Yuriy Kolerov Signed-off-by: Thomas Petazzoni (cherry picked from commit 5aecb99902c35ed48435d7bd7945a0ff58048940) Signed-off-by: Peter Korsgaard --- package/glibc/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/glibc/Config.in b/package/glibc/Config.in index 81c64083f4..6075d28874 100644 --- a/package/glibc/Config.in +++ b/package/glibc/Config.in @@ -21,7 +21,7 @@ config BR2_PACKAGE_GLIBC_ARCH_SUPPORTS default y if BR2_x86_64 default y if BR2_microblaze default y if BR2_nios2 - default y if BR2_arc && BR2_ARC_ATOMIC_EXT + default y if BR2_arc && BR2_ARC_ATOMIC_EXT && !BR2_arc750d && !BR2_arc770d depends on !BR2_POWERPC_CPU_HAS_SPE depends on BR2_RISCV_ISA_RVA || !BR2_riscv depends on BR2_USE_MMU