@samitouri / QOSamiQemu / commits / a2a9761ec1

target/arm: Build cpu64.o as common object

While gdbstub64.o is already built once, build it as common object, reducing target-specific set in arm_ss[]. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com> Acked-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20260526203722.79463-9-philmd@linaro.org>

Philippe Mathieu-Daudé committed May 15, 2026 at 14:36 UTC a2a9761ec19cd24b3306c2c7bf7675f98d986567
1 file changed +3 -1
target/arm/tcg/meson.build
+3 -1
@@ -35,7 +35,6 @@ arm_ss.add(files(
35 ))
36
37 arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
38 - 'cpu64.c',
38 'gengvec64.c',
39 'translate-a64.c',
40 'translate-sve.c',
@@ -80,6 +79,9 @@ arm_common_user_system_ss.add(
79 'vec_helper.c',
80 'vfp_helper.c',
81 ))
82 +arm_common_user_system_ss.add(when: 'TARGET_AARCH64', if_true: files(
83 + 'cpu64.c',
84 +))
85
86 arm_common_system_ss.add(files(
87 'cpregs-at.c',