On 4/17/25 17:50, Philippe Mathieu-Daudé wrote:
Implement the TargetInfo structure for qemu-system-aarch64 binary.
Signed-off-by: Philippe Mathieu-Daudé <phi...@linaro.org>
---
configs/targets/aarch64-softmmu.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 configs/targets/aarch64-softmmu.c
diff --git a/configs/targets/aarch64-softmmu.c
b/configs/targets/aarch64-softmmu.c
new file mode 100644
index 00000000000..e48ac264d7d
--- /dev/null
+++ b/configs/targets/aarch64-softmmu.c
@@ -0,0 +1,22 @@
+/*
+ * QEMU binary/target API (qemu-system-aarch64)
+ *
+ * Copyright (c) Linaro
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "qemu/osdep.h"
+#include "qemu/target_info-impl.h"
+#include "qemu/target_info-qom.h"
+#include "cpu-qom.h"
+
+static const TargetInfo target_info_aarch64_system = {
+ .name = "aarch64",
+ .machine_typename = TYPE_TARGET_AARCH64_MACHINE,
+};
+
+const TargetInfo *target_info(void)
+{
+ return &target_info_aarch64_system;
+}
You can squash this with same thing for arm target, and split meson
change in another commit.