diff mbox series

[27/37] system: Move watchpoint.c to libsystem_ss

Message ID 20250313034524.3069690-28-richard.henderson@linaro.org (mailing list archive)
State New
Headers show
Series accel/tcg, codebase: Build once patches | expand

Commit Message

Richard Henderson March 13, 2025, 3:45 a.m. UTC
Some of the headers used require CONFIG_USER_ONLY.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 system/meson.build | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/system/meson.build b/system/meson.build
index c83d80fa24..2aab3e97f4 100644
--- a/system/meson.build
+++ b/system/meson.build
@@ -23,9 +23,12 @@  system_ss.add(files(
   'runstate.c',
   'tpm-hmp-cmds.c',
   'vl.c',
-  'watchpoint.c',
 ), sdl, libpmem, libdaxctl)
 
+libsystem_ss.add(files(
+  'watchpoint.c',
+))
+
 if have_tpm
   system_ss.add(files('tpm.c'))
 endif