diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-09-14 20:57:15 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-10-04 11:03:54 -0700 |
commit | 5934660fa2aabaf76e650dcd1fccc2b676122137 (patch) | |
tree | c1c4ad88a5ec87820dfdf7c0ed02247609bec0df /accel/tcg/meson.build | |
parent | 4c268d6d03d297b83f2aa0af2de2e867af2389fc (diff) | |
download | qemu-5934660fa2aabaf76e650dcd1fccc2b676122137.zip qemu-5934660fa2aabaf76e650dcd1fccc2b676122137.tar.gz qemu-5934660fa2aabaf76e650dcd1fccc2b676122137.tar.bz2 |
accel/tcg: Make monitor.c a target-agnostic unit
Move target-agnostic declarations from "internal-target.h"
to a new "internal-common.h" header.
monitor.c now don't include target specific headers and can
be compiled once in system_ss[].
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Anton Johansson <anjo@rev.ng>
Message-Id: <20230914185718.76241-10-philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg/meson.build')
-rw-r--r-- | accel/tcg/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/accel/tcg/meson.build b/accel/tcg/meson.build index 8ace783..0fb03bd 100644 --- a/accel/tcg/meson.build +++ b/accel/tcg/meson.build @@ -20,6 +20,9 @@ specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_ss) specific_ss.add(when: ['CONFIG_SYSTEM_ONLY', 'CONFIG_TCG'], if_true: files( 'cputlb.c', +)) + +system_ss.add(when: ['CONFIG_TCG'], if_true: files( 'monitor.c', )) |