On 18/12/25 16:04, Thomas Huth wrote:
On 21/10/2025 22.57, Philippe Mathieu-Daudé wrote:
Implement the TargetInfo structure for qemu-system-arm
and qemu-system-aarch64 binaries.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
---
configs/targets/aarch64-softmmu.c | 26 ++++++++++++++++++++++++++
configs/targets/arm-softmmu.c | 26 ++++++++++++++++++++++++++
configs/targets/meson.build | 1 +
3 files changed, 53 insertions(+)
create mode 100644 configs/targets/aarch64-softmmu.c
create mode 100644 configs/targets/arm-softmmu.c
Hi Philippe,
I noticed that the "max78000fthr" machine does not show up in the qemu-
system-aarch64 binary anymore, and bisecting pointed me to this patch here.
Could you please have a look?
:/
Likely fix (untested):
-- >8 --
diff --git a/hw/arm/max78000fthr.c b/hw/arm/max78000fthr.c
index c4f6b5b1b04..0dc13eadd82 100644
--- a/hw/arm/max78000fthr.c
+++ b/hw/arm/max78000fthr.c
@@ -50 +50 @@ static void max78000_machine_init(MachineClass *mc)
-DEFINE_MACHINE("max78000fthr", max78000_machine_init)
+DEFINE_MACHINE_ARM("max78000fthr", max78000_machine_init)
---