2020-08-19 14:17:19 +03:00
|
|
|
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: [files(
|
2020-08-06 14:40:26 +03:00
|
|
|
'arch_init.c',
|
|
|
|
'ioport.c',
|
|
|
|
'memory.c',
|
2021-05-16 21:00:20 +03:00
|
|
|
'physmem.c',
|
2020-08-06 14:40:26 +03:00
|
|
|
'qtest.c',
|
2022-06-25 20:38:33 +03:00
|
|
|
'dirtylimit.c',
|
2020-08-19 14:17:19 +03:00
|
|
|
)])
|
|
|
|
|
|
|
|
specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
|
2022-12-09 16:47:52 +03:00
|
|
|
'icount.c',
|
|
|
|
'watchpoint.c',
|
2020-08-19 14:17:19 +03:00
|
|
|
)])
|
2020-10-06 10:01:22 +03:00
|
|
|
|
|
|
|
softmmu_ss.add(files(
|
2021-05-16 21:00:20 +03:00
|
|
|
'balloon.c',
|
2020-10-06 10:01:22 +03:00
|
|
|
'bootdevice.c',
|
2021-05-16 21:00:20 +03:00
|
|
|
'cpus.c',
|
|
|
|
'cpu-throttle.c',
|
|
|
|
'cpu-timers.c',
|
|
|
|
'datadir.c',
|
2020-10-06 10:01:22 +03:00
|
|
|
'dma-helpers.c',
|
2021-05-16 21:00:20 +03:00
|
|
|
'globals.c',
|
|
|
|
'memory_mapping.c',
|
2020-10-06 10:01:22 +03:00
|
|
|
'qdev-monitor.c',
|
2021-05-16 21:00:20 +03:00
|
|
|
'rtc.c',
|
|
|
|
'runstate-action.c',
|
2023-01-24 15:19:35 +03:00
|
|
|
'runstate-hmp-cmds.c',
|
2021-05-16 21:00:20 +03:00
|
|
|
'runstate.c',
|
2023-01-24 15:19:34 +03:00
|
|
|
'tpm-hmp-cmds.c',
|
2021-05-16 21:00:20 +03:00
|
|
|
'vl.c',
|
2020-10-06 10:05:29 +03:00
|
|
|
), sdl, libpmem, libdaxctl)
|
2020-10-06 10:01:22 +03:00
|
|
|
|
2021-12-21 14:38:27 +03:00
|
|
|
if have_tpm
|
|
|
|
softmmu_ss.add(files('tpm.c'))
|
|
|
|
endif
|
|
|
|
|
2020-11-17 16:22:24 +03:00
|
|
|
softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
|
2020-10-06 10:01:22 +03:00
|
|
|
softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))
|