diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2025-03-12 19:45:02 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-23 14:08:39 -0700 |
commit | 53d2354cec1df5a364600ab5dcf4462266a84b63 (patch) | |
tree | 1613911c9fb280f29ba6319065217b922161f6ec | |
parent | 3e57baa22ea6892d1b8c212253b2859be30f45ee (diff) | |
download | qemu-53d2354cec1df5a364600ab5dcf4462266a84b63.zip qemu-53d2354cec1df5a364600ab5dcf4462266a84b63.tar.gz qemu-53d2354cec1df5a364600ab5dcf4462266a84b63.tar.bz2 |
hw/core: Move unconditional files to libsystem_ss, libuser_ss
Many of the headers used by these require CONFIG_USER_ONLY.
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | hw/core/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/core/meson.build b/hw/core/meson.build index b5a545a..547de65 100644 --- a/hw/core/meson.build +++ b/hw/core/meson.build @@ -26,7 +26,7 @@ system_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('stream.c')) system_ss.add(when: 'CONFIG_PLATFORM_BUS', if_true: files('sysbus-fdt.c')) system_ss.add(when: 'CONFIG_EIF', if_true: [files('eif.c'), zlib, libcbor, gnutls]) -system_ss.add(files( +libsystem_ss.add(files( 'cpu-system.c', 'fw-path-provider.c', 'gpio.c', @@ -46,7 +46,7 @@ system_ss.add(files( 'vm-change-state-handler.c', 'clock-vmstate.c', )) -user_ss.add(files( +libuser_ss.add(files( 'cpu-user.c', 'qdev-user.c', )) |