From 2298ceb213e4ce858f048603c44113057766efcf Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Mon, 15 Jan 2024 22:20:03 +0100 Subject: [PATCH] package/tcf-agent: fix powerpc64 build Translation of ppc64 to powerpc has been removed since version 1.8.0 and https://git.eclipse.org/c/tcf/org.eclipse.tcf.agent.git/commit/?id=94fa43963538afffc1fff77623cd1561a05d0e21 resulting in the following build failure since commit 81802e263a12e173e0e1028449d1e1e11b2e5974: In file included from /home/buildroot/autobuild/instance-0/output-1/build/tcf-agent-1.8.0/agent/system/GNU/Linux/tcf/context-linux.c:58: /home/buildroot/autobuild/instance-0/output-1/build/tcf-agent-1.8.0/agent/../agent/system/GNU/Linux/tcf/regset.h:25:10: fatal error: tcf/regset-mdep.h: No such file or directory 25 | #include | ^~~~~~~~~~~~~~~~~~~ Fixes: - http://autobuild.buildroot.org/results/821049a692d4a64fa45b73e8e18eb48c36d46e6b Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard --- package/tcf-agent/Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/tcf-agent/Config.in b/package/tcf-agent/Config.in index 8c7aab0c0b..a016871e6d 100644 --- a/package/tcf-agent/Config.in +++ b/package/tcf-agent/Config.in @@ -27,8 +27,8 @@ config BR2_PACKAGE_TCF_AGENT_ARCH default "i686" if BR2_i386 && BR2_ARCH="i686" default "i386" if BR2_i386 && !BR2_ARCH="i686" default "x86_64" if BR2_x86_64 - default "powerpc" if BR2_powerpc - default "ppc64" if BR2_powerpc64 || BR2_powerpc64le + default "powerpc" if BR2_powerpc || BR2_powerpc64 || \ + BR2_powerpc64le default "microblaze" if BR2_microblaze || BR2_microblazeel config BR2_PACKAGE_TCF_AGENT_ARCH_SUPPORTS