@samitouri / QOSamiQemu / commits / e63cd007ea

target/arm: Build gdbstub64.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-8-philmd@linaro.org>

Philippe Mathieu-Daudé committed May 15, 2026 at 14:59 UTC e63cd007ea445f9e431c98a3c9a2caa54ed291c9
1 file changed +3 -1
target/arm/meson.build
+3 -1
@@ -11,7 +11,6 @@ arm_user_ss.add(files('gdbstub.c'))
11
12 arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
13 'cpu64.c',
14 - 'gdbstub64.c'
14 ))
15
16 arm_common_ss.add(files(
@@ -24,6 +23,9 @@ arm_common_user_system_ss.add(files(
23 'helper.c',
24 'vfp_fpscr.c',
25 ))
26 +arm_common_user_system_ss.add(when: 'TARGET_AARCH64', if_true: files(
27 + 'gdbstub64.c'
28 +))
29
30 arm_common_system_ss.add(files(
31 'arm-qmp-cmds.c',