mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
Build and register the guest vCPU's model-specific registers using the MSHV interface. Signed-off-by: Magnus Kulke <magnuskulke@linux.microsoft.com> Link: https://lore.kernel.org/r/20250916164847.77883-20-magnuskulke@linux.microsoft.com [mshv.h/mshv_int.h split. - Paolo] Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
10 lines
165 B
Meson
10 lines
165 B
Meson
mshv_ss = ss.source_set()
|
|
mshv_ss.add(if_true: files(
|
|
'irq.c',
|
|
'mem.c',
|
|
'msr.c',
|
|
'mshv-all.c'
|
|
))
|
|
|
|
specific_ss.add_all(when: 'CONFIG_MSHV', if_true: mshv_ss)
|