qemu/target-info: Add %target_arch field to TargetInfo

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-Id: <20250708215320.70426-4-philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
Philippe Mathieu-Daudé 2025-07-08 23:53:14 +02:00 committed by Michael S. Tsirkin
parent 0af00042a9
commit 536613be40
3 changed files with 11 additions and 3 deletions

View file

@ -24,8 +24,13 @@ unsigned target_long_bits(void)
SysEmuTarget target_arch(void)
{
return qapi_enum_parse(&SysEmuTarget_lookup, target_name(), -1,
&error_abort);
SysEmuTarget arch = target_info()->target_arch;
if (arch == SYS_EMU_TARGET__MAX) {
arch = qapi_enum_parse(&SysEmuTarget_lookup, target_name(), -1,
&error_abort);
}
return arch;
}
const char *target_cpu_type(void)