[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 11/13] contrib/elf2dmp: Build only for little endian host
From: |
Peter Maydell |
Subject: |
Re: [PATCH v2 11/13] contrib/elf2dmp: Build only for little endian host |
Date: |
Tue, 5 Mar 2024 13:33:01 +0000 |
On Tue, 5 Mar 2024 at 07:37, Akihiko Odaki <akihiko.odaki@daynix.com> wrote:
>
> elf2dmp assumes little endian host in many places.
>
> 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)
If it assumes a little-endian host that is a bug and we
should fix it, not just disable building the tool on
big-endian systems.
thanks
-- PMM
- [PATCH v2 12/13] contrib/elf2dmp: Use GPtrArray, (continued)
- [PATCH v2 12/13] contrib/elf2dmp: Use GPtrArray, Akihiko Odaki, 2024/03/05
- [PATCH v2 08/13] contrib/elf2dmp: Use lduw_le_p() to read PDB, Akihiko Odaki, 2024/03/05
- [PATCH v2 13/13] contrib/elf2dmp: Clamp QEMU note to file size, Akihiko Odaki, 2024/03/05
- [PATCH v2 07/13] contrib/elf2dmp: Ensure segment fits in file, Akihiko Odaki, 2024/03/05
- [PATCH v2 09/13] contrib/elf2dmp: Use rol64() to decode, Akihiko Odaki, 2024/03/05
- [PATCH v2 11/13] contrib/elf2dmp: Build only for little endian host, Akihiko Odaki, 2024/03/05
- Re: [PATCH v2 11/13] contrib/elf2dmp: Build only for little endian host,
Peter Maydell <=
- [PATCH v2 06/13] contrib/elf2dmp: Always destroy PA space, Akihiko Odaki, 2024/03/05
- [PATCH v2 10/13] MAINTAINERS: Add Akihiko Odaki as a elf2dmp reviewer, Akihiko Odaki, 2024/03/05