mirror of
https://github.com/qemu/qemu.git
synced 2026-02-04 02:24:51 +00:00
Introduce the initial scaffold for the MSHV (Microsoft Hypervisor) accelerator backend. This includes the basic directory structure and stub implementations needed to integrate with QEMU's accelerator framework. Signed-off-by: Magnus Kulke <magnuskulke@linux.microsoft.com> Link: https://lore.kernel.org/r/20250916164847.77883-8-magnuskulke@linux.microsoft.com [Move include of linux/mshv.h in the per-target section; create include/system/mshv_int.h. - Paolo] Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
18 lines
386 B
Meson
18 lines
386 B
Meson
common_ss.add(files('accel-common.c'))
|
|
specific_ss.add(files('accel-target.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('qtest')
|
|
subdir('kvm')
|
|
subdir('xen')
|
|
subdir('stubs')
|
|
subdir('mshv')
|
|
endif
|
|
|
|
# qtest
|
|
system_ss.add(files('dummy-cpus.c'))
|