diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2025-03-06 21:49:50 -0800 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-03-08 07:56:14 -0800 |
commit | 5516b44bea9ce7fcc5d8eddd061ffc8dacc31b51 (patch) | |
tree | 60706a530356cd63d5d0b23e01858b29ee8ac540 /system | |
parent | 6ff5da16000f908140723e164d33a0b51a6c4162 (diff) | |
download | qemu-5516b44bea9ce7fcc5d8eddd061ffc8dacc31b51.zip qemu-5516b44bea9ce7fcc5d8eddd061ffc8dacc31b51.tar.gz qemu-5516b44bea9ce7fcc5d8eddd061ffc8dacc31b51.tar.bz2 |
system: Build watchpoint.c once
Now that watchpoint.c uses cputlb.h instead of exec-all.h,
it can be built once.
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
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>
Diffstat (limited to 'system')
-rw-r--r-- | system/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/meson.build b/system/meson.build index 4952f4b..c83d80f 100644 --- a/system/meson.build +++ b/system/meson.build @@ -3,7 +3,6 @@ specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_true: [files( 'ioport.c', 'memory.c', 'physmem.c', - 'watchpoint.c', )]) system_ss.add(files( @@ -24,6 +23,7 @@ system_ss.add(files( 'runstate.c', 'tpm-hmp-cmds.c', 'vl.c', + 'watchpoint.c', ), sdl, libpmem, libdaxctl) if have_tpm |