
Headers in include/sysemu/ are not only related to system *emulation*, they are also used by virtualization. Rename as system/ which is clearer. Files renamed manually then mechanical change using sed tool. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Tested-by: Lei Yang <leiyang@redhat.com> Message-Id: <20241203172445.28576-1-philmd@linaro.org>
38 lines
891 B
Meson
38 lines
891 B
Meson
i386_ss = ss.source_set()
|
|
i386_ss.add(files(
|
|
'cpu.c',
|
|
'gdbstub.c',
|
|
'helper.c',
|
|
'xsave_helper.c',
|
|
'cpu-dump.c',
|
|
))
|
|
i386_ss.add(when: 'CONFIG_SEV', if_true: files('host-cpu.c', 'confidential-guest.c'))
|
|
|
|
# x86 cpu type
|
|
i386_ss.add(when: 'CONFIG_KVM', if_true: files('host-cpu.c'))
|
|
i386_ss.add(when: 'CONFIG_HVF', if_true: files('host-cpu.c'))
|
|
|
|
i386_system_ss = ss.source_set()
|
|
i386_system_ss.add(files(
|
|
'arch_dump.c',
|
|
'arch_memory_mapping.c',
|
|
'machine.c',
|
|
'monitor.c',
|
|
'cpu-apic.c',
|
|
'cpu-system.c',
|
|
))
|
|
i386_system_ss.add(when: 'CONFIG_SEV', if_true: files('sev.c'),
|
|
if_false: files('sev-system-stub.c'))
|
|
|
|
i386_user_ss = ss.source_set()
|
|
|
|
subdir('kvm')
|
|
subdir('whpx')
|
|
subdir('nvmm')
|
|
subdir('hvf')
|
|
subdir('tcg')
|
|
|
|
target_arch += {'i386': i386_ss}
|
|
target_system_arch += {'i386': i386_system_ss}
|
|
target_user_arch += {'i386': i386_user_ss}
|