summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2025-03-12 19:45:50 -0700
committerRichard Henderson <richard.henderson@linaro.org>2025-04-23 14:08:39 -0700
commit7c2f3580e51f3a1d74d78b88267be22650b518ac (patch)
tree9eeb9250c595356ce73de327f5842a15e6d66ea5
parent53d2354cec1df5a364600ab5dcf4462266a84b63 (diff)
downloadfocaccia-qemu-7c2f3580e51f3a1d74d78b88267be22650b518ac.tar.gz
focaccia-qemu-7c2f3580e51f3a1d74d78b88267be22650b518ac.zip
system: Move most files to libsystem_ss
Some of the headers used require CONFIG_USER_ONLY.
Do not move vl.c, because it has other include dependencies
that are present in system_ss.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--system/meson.build7
1 files changed, 5 insertions, 2 deletions
diff --git a/system/meson.build b/system/meson.build
index 063301c3ad..c2f0082766 100644
--- a/system/meson.build
+++ b/system/meson.build
@@ -4,6 +4,10 @@ specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_true: [files(
 )])
 
 system_ss.add(files(
+  'vl.c',
+), sdl, libpmem, libdaxctl)
+
+libsystem_ss.add(files(
   'balloon.c',
   'bootdevice.c',
   'cpus.c',
@@ -23,9 +27,8 @@ system_ss.add(files(
   'runstate-hmp-cmds.c',
   'runstate.c',
   'tpm-hmp-cmds.c',
-  'vl.c',
   'watchpoint.c',
-), sdl, libpmem, libdaxctl)
+))
 
 if have_tpm
   system_ss.add(files('tpm.c'))