From: Philippe Mathieu-Daudé Date: Wed, 7 Jan 2026 08:31:29 +0000 (+0100) Subject: target/sh4: Build system units in common source set X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=678805a7ef15c62d1cddd768f2e73d9df0b77389;p=thirdparty%2Fqemu.git target/sh4: Build system units in common source set Since commit range 42c90609b8f..82a1e739010 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-3-philmd@linaro.org> --- diff --git a/target/sh4/meson.build b/target/sh4/meson.build index fe09f96684..221700bcf8 100644 --- a/target/sh4/meson.build +++ b/target/sh4/meson.build @@ -11,4 +11,4 @@ sh4_system_ss = ss.source_set() sh4_system_ss.add(files('monitor.c')) target_arch += {'sh4': sh4_ss} -target_system_arch += {'sh4': sh4_system_ss} +target_common_system_arch += {'sh4': sh4_system_ss}