All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/kvm-unit-tests: fix build on armeb targets
@ 2022-06-06 21:17 Thomas Huth
  0 siblings, 0 replies; only message in thread
From: Thomas Huth @ 2022-06-06 21:17 UTC (permalink / raw)
  To: buildroot; +Cc: Cyril Bur, Matt Weber

Commit 2d8a4e1fdd0ce0 ("fix build on big endian aarch64 targets")
already fixed this on aarch64 targets, but as recent build tests
discovered, we have the same issue with 32-bit big endian arm targets.
Thus let's also look on the BR2_armeb switch when configuring the
kvm-unit-tests.

Signed-off-by: Thomas Huth <huth@tuxfamily.org>
---
 A failed build can be seen here:
 http://autobuild.buildroot.net/results/9a3783cefe542db58cc8a6bd4a6c2746a296c892

 package/kvm-unit-tests/kvm-unit-tests.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/kvm-unit-tests/kvm-unit-tests.mk b/package/kvm-unit-tests/kvm-unit-tests.mk
index dd8f153710..f2ec3b2953 100644
--- a/package/kvm-unit-tests/kvm-unit-tests.mk
+++ b/package/kvm-unit-tests/kvm-unit-tests.mk
@@ -12,7 +12,7 @@ KVM_UNIT_TESTS_LICENSE_FILES = COPYRIGHT
 
 ifeq ($(BR2_aarch64)$(BR2_aarch64_be),y)
 KVM_UNIT_TESTS_ARCH = aarch64
-else ifeq ($(BR2_arm),y)
+else ifeq ($(BR2_arm)$(BR2_armeb),y)
 KVM_UNIT_TESTS_ARCH = arm
 else ifeq ($(BR2_i386),y)
 KVM_UNIT_TESTS_ARCH = i386
-- 
2.36.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-06-06 21:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-06 21:17 [Buildroot] [PATCH] package/kvm-unit-tests: fix build on armeb targets Thomas Huth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.