From 90d14b8d0da2154d59c72d5237e8ae3f017ebbbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Wed, 7 Jan 2026 09:31:21 +0100 Subject: [PATCH] target/rx: Build system units in common source set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since commit range 2982b948a9f..86114e43ffd 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-2-philmd@linaro.org> --- target/rx/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/rx/meson.build b/target/rx/meson.build index d196737ce3..86dc231eb0 100644 --- a/target/rx/meson.build +++ b/target/rx/meson.build @@ -13,4 +13,4 @@ rx_ss.add(files( 'disas.c')) target_arch += {'rx': rx_ss} -target_system_arch += {'rx': ss.source_set()} +target_common_system_arch += {'rx': ss.source_set()}