From: Philippe Mathieu-Daudé Date: Wed, 7 Jan 2026 08:30:32 +0000 (+0100) Subject: target/alpha: Build system units in common source set X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63004cd8c479baf439ec46e3a9325db4a45bcea3;p=thirdparty%2Fqemu.git 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é Reviewed-by: Richard Henderson 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}