qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH v3 16/19] contrib/elf2dmp: Build only for little endian host


From: Akihiko Odaki
Subject: [PATCH v3 16/19] contrib/elf2dmp: Build only for little endian host
Date: Wed, 06 Mar 2024 15:12:22 +0900

elf2dmp assumes little endian host in many places. Build it only for
little endian hosts until they are fixed.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
 contrib/elf2dmp/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/elf2dmp/meson.build b/contrib/elf2dmp/meson.build
index 6707d43c4fa5..046569861f7a 100644
--- a/contrib/elf2dmp/meson.build
+++ b/contrib/elf2dmp/meson.build
@@ -1,4 +1,4 @@
-if curl.found()
+if curl.found() and host_machine.endian() == 'little'
   executable('elf2dmp', files('main.c', 'addrspace.c', 'download.c', 'pdb.c', 
'qemu_elf.c'), genh,
              dependencies: [glib, curl],
              install: true)

-- 
2.44.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]