From: Richard Henderson Date: Thu, 13 Mar 2025 02:45:02 +0000 (-0700) Subject: hw/core: Move unconditional files to libsystem_ss, libuser_ss X-Git-Tag: v10.1.0-rc0~117^2~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53d2354cec1df5a364600ab5dcf4462266a84b63;p=thirdparty%2Fqemu.git 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 Signed-off-by: Richard Henderson --- diff --git a/hw/core/meson.build b/hw/core/meson.build index b5a545a0edd..547de6527cf 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', ))