aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierrick Bouvier <pierrick.bouvier@linaro.org>2025-05-12 11:04:40 -0700
committerPeter Maydell <peter.maydell@linaro.org>2025-05-14 15:12:40 +0100
commit55bb7a9ad097419b5406ed1e816339ed652f3017 (patch)
treeb8d11b0c05cf590fb88f246bd46da65d378b5877
parent89356e123bfe09459bf0c596d6dce660971f6541 (diff)
downloadqemu-55bb7a9ad097419b5406ed1e816339ed652f3017.zip
qemu-55bb7a9ad097419b5406ed1e816339ed652f3017.tar.gz
qemu-55bb7a9ad097419b5406ed1e816339ed652f3017.tar.bz2
target/arm/arch_dump: compile file once (system)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20250512180502.2395029-27-pierrick.bouvier@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--target/arm/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/meson.build b/target/arm/meson.build
index 06d4795..95a2b07 100644
--- a/target/arm/meson.build
+++ b/target/arm/meson.build
@@ -15,7 +15,6 @@ arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
arm_system_ss = ss.source_set()
arm_common_system_ss = ss.source_set()
arm_system_ss.add(files(
- 'arch_dump.c',
'arm-powerctl.c',
'arm-qmp-cmds.c',
'cortex-regs.c',
@@ -38,6 +37,7 @@ arm_common_system_ss.add(files('cpu.c'), capstone)
arm_common_system_ss.add(when: 'TARGET_AARCH64', if_false: files(
'cpu32-stubs.c'))
arm_common_system_ss.add(files(
+ 'arch_dump.c',
'debug_helper.c',
'helper.c',
'vfp_fpscr.c',