diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2025-05-12 11:04:41 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-05-14 15:12:40 +0100 |
commit | 262a5ce86ebfd7975ed6b5075a512d33e0ef1d1d (patch) | |
tree | df45bc09e8186d47445c43499b472ff07eab61a7 | |
parent | 55bb7a9ad097419b5406ed1e816339ed652f3017 (diff) | |
download | qemu-262a5ce86ebfd7975ed6b5075a512d33e0ef1d1d.zip qemu-262a5ce86ebfd7975ed6b5075a512d33e0ef1d1d.tar.gz qemu-262a5ce86ebfd7975ed6b5075a512d33e0ef1d1d.tar.bz2 |
target/arm/arm-powerctl: 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-28-pierrick.bouvier@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | target/arm/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/meson.build b/target/arm/meson.build index 95a2b07..7db573f 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( - 'arm-powerctl.c', 'arm-qmp-cmds.c', 'cortex-regs.c', 'machine.c', @@ -38,6 +37,7 @@ arm_common_system_ss.add(when: 'TARGET_AARCH64', if_false: files( 'cpu32-stubs.c')) arm_common_system_ss.add(files( 'arch_dump.c', + 'arm-powerctl.c', 'debug_helper.c', 'helper.c', 'vfp_fpscr.c', |