2020-08-19 11:17:19 +00:00
|
|
|
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: [files(
|
2020-08-06 11:40:26 +00:00
|
|
|
'arch_init.c',
|
|
|
|
'balloon.c',
|
|
|
|
'cpus.c',
|
|
|
|
'cpu-throttle.c',
|
2020-10-28 11:36:57 +00:00
|
|
|
'datadir.c',
|
2020-10-28 12:04:08 +00:00
|
|
|
'globals.c',
|
2020-10-06 07:05:29 +00:00
|
|
|
'physmem.c',
|
2020-08-06 11:40:26 +00:00
|
|
|
'ioport.c',
|
2020-10-28 11:36:57 +00:00
|
|
|
'rtc.c',
|
2020-11-13 08:25:19 +00:00
|
|
|
'runstate.c',
|
2020-08-06 11:40:26 +00:00
|
|
|
'memory.c',
|
|
|
|
'memory_mapping.c',
|
|
|
|
'qtest.c',
|
2020-08-19 11:17:19 +00:00
|
|
|
'vl.c',
|
|
|
|
'cpu-timers.c',
|
2020-12-11 16:52:43 +00:00
|
|
|
'runstate-action.c',
|
2020-08-19 11:17:19 +00:00
|
|
|
)])
|
|
|
|
|
|
|
|
specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
|
|
|
|
'icount.c'
|
|
|
|
)])
|
2020-10-06 07:01:22 +00:00
|
|
|
|
|
|
|
softmmu_ss.add(files(
|
|
|
|
'bootdevice.c',
|
|
|
|
'dma-helpers.c',
|
|
|
|
'qdev-monitor.c',
|
2020-10-06 07:05:29 +00:00
|
|
|
), sdl, libpmem, libdaxctl)
|
2020-10-06 07:01:22 +00:00
|
|
|
|
|
|
|
softmmu_ss.add(when: 'CONFIG_TPM', if_true: files('tpm.c'))
|
2020-11-17 13:22:24 +00:00
|
|
|
softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
|
2020-10-06 07:01:22 +00:00
|
|
|
softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))
|