From 6338bb09db394f577465ff1eaeb6fa28650ae0ea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Wed, 7 Jan 2026 09:31:37 +0100 Subject: [PATCH] target/tricore: Build system units in common source set MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Since commit range 809b460f305..cd08bcaa36b we remove all uses of the target_ulong type in target/rx/. 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: <20260107200702.54582-4-philmd@linaro.org> --- target/tricore/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/tricore/meson.build b/target/tricore/meson.build index 45f49f0128..f40daee61e 100644 --- a/target/tricore/meson.build +++ b/target/tricore/meson.build @@ -12,4 +12,4 @@ tricore_ss.add(zlib) tricore_system_ss = ss.source_set() target_arch += {'tricore': tricore_ss} -target_system_arch += {'tricore': tricore_system_ss} +target_common_system_arch += {'tricore': tricore_system_ss} -- 2.47.3