mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:17 +00:00
Initialize the TypeInfo structure at runtime using the TargetInfo API to resolve TYPE_ACCEL_CPU, replacing CPU_RESOLVING_TYPE by target_cpu_type(). Since the code is no more target-specific, move it to accel-common.c, removing the need for accel-target.c. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Anton Johansson <anjo@rev.ng> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com> Message-Id: <20260528140857.44130-1-philmd@linaro.org>
19 lines
380 B
Meson
19 lines
380 B
Meson
common_ss.add(files('accel-common.c'))
|
|
system_ss.add(files('accel-system.c', 'accel-blocker.c', 'accel-qmp.c', 'accel-irq.c'))
|
|
user_ss.add(files('accel-user.c'))
|
|
|
|
subdir('tcg')
|
|
if have_system
|
|
subdir('hvf')
|
|
subdir('whpx')
|
|
subdir('qtest')
|
|
subdir('kvm')
|
|
subdir('xen')
|
|
subdir('stubs')
|
|
subdir('mshv')
|
|
subdir('nitro')
|
|
endif
|
|
|
|
# qtest
|
|
system_ss.add(files('dummy-cpus.c'))
|