Commit 63004cd8c4 for qemu.org

commit 63004cd8c479baf439ec46e3a9325db4a45bcea3
Author: Philippe Mathieu-Daudé <philmd@linaro.org>
Date:   Wed Jan 7 09:30:32 2026 +0100

    target/alpha: Build system units in common source set

    Since commits bb5de52524c ("target: Widen pc/cs_base in
    cpu_get_tb_cpu_state") and 32f0c394bbf ("target: Use vaddr
    in gen_intermediate_code") we remove all uses of the target_ulong
    type in target/alpha/. Use the meson target_common_system_arch[]
    source set to prevent further uses of target-specific types.

    Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
    Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
    Message-ID: <20260202234550.34156-3-philmd@linaro.org>

diff --git a/target/alpha/meson.build b/target/alpha/meson.build
index 7dbbd55717..9447f8020b 100644
--- a/target/alpha/meson.build
+++ b/target/alpha/meson.build
@@ -18,4 +18,4 @@ alpha_system_ss.add(files(
 ))

 target_arch += {'alpha': alpha_ss}
-target_system_arch += {'alpha': alpha_system_ss}
+target_common_system_arch += {'alpha': alpha_system_ss}