mirror of
https://github.com/qemu/qemu.git
synced 2026-04-06 06:11:08 +00:00
Move stubs to the global stub_ss[] source set. These files are now built once for all binaries, instead of one time per system binary. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20260225035739.42848-10-philmd@linaro.org>
14 lines
430 B
Meson
14 lines
430 B
Meson
system_ss.add(when: 'CONFIG_CXL',
|
|
if_true: files(
|
|
'cxl-component-utils.c',
|
|
'cxl-device-utils.c',
|
|
'cxl-mailbox-utils.c',
|
|
'cxl-host.c',
|
|
'cxl-cdat.c',
|
|
'cxl-events.c',
|
|
'switch-mailbox-cci.c',
|
|
))
|
|
stub_ss.add(files(
|
|
'cxl-host-stubs.c',
|
|
))
|