[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 16/19] contrib/elf2dmp: Build only for little endian host
From: |
Akihiko Odaki |
Subject: |
[PATCH v4 16/19] contrib/elf2dmp: Build only for little endian host |
Date: |
Thu, 07 Mar 2024 19:20:59 +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
- [PATCH v4 09/19] contrib/elf2dmp: Fix error reporting style in main.c, (continued)
- [PATCH v4 09/19] contrib/elf2dmp: Fix error reporting style in main.c, Akihiko Odaki, 2024/03/07
- [PATCH v4 10/19] contrib/elf2dmp: Always check for PA resolution failure, Akihiko Odaki, 2024/03/07
- [PATCH v4 11/19] contrib/elf2dmp: Always destroy PA space, Akihiko Odaki, 2024/03/07
- [PATCH v4 14/19] contrib/elf2dmp: Use rol64() to decode, Akihiko Odaki, 2024/03/07
- [PATCH v4 15/19] MAINTAINERS: Add Akihiko Odaki as a elf2dmp reviewer, Akihiko Odaki, 2024/03/07
- [PATCH v4 12/19] contrib/elf2dmp: Ensure segment fits in file, Akihiko Odaki, 2024/03/07
- [PATCH v4 16/19] contrib/elf2dmp: Build only for little endian host,
Akihiko Odaki <=
- [PATCH v4 17/19] contrib/elf2dmp: Use GPtrArray, Akihiko Odaki, 2024/03/07
- [PATCH v4 18/19] contrib/elf2dmp: Clamp QEMU note to file size, Akihiko Odaki, 2024/03/07
- [PATCH v4 13/19] contrib/elf2dmp: Use lduw_le_p() to read PDB, Akihiko Odaki, 2024/03/07
- [PATCH v4 19/19] contrib/elf2dmp: Ensure phdrs fit in file, Akihiko Odaki, 2024/03/07
- Re: [PATCH v4 00/19] contrib/elf2dmp: Improve robustness, Viktor Prutyanov, 2024/03/10
- Re: [PATCH v4 00/19] contrib/elf2dmp: Improve robustness, Peter Maydell, 2024/03/11