[PATCH 6/9] target/openrisc: Build system units in common source set

Philippe Mathieu-Daudé posted 9 patches 1 month ago
Maintainers: Richard Henderson <richard.henderson@linaro.org>, Helge Deller <deller@gmx.de>, Laurent Vivier <laurent@vivier.eu>, Stafford Horne <shorne@gmail.com>, Yoshinori Sato <yoshinori.sato@nifty.com>, Bastian Koppelmann <kbastian@rumtueddeln.de>
[PATCH 6/9] target/openrisc: Build system units in common source set
Posted by Philippe Mathieu-Daudé 1 month ago
Since previous 2 commits and range 2795bc52af4..5b67dbf1dc3 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é <philmd@linaro.org>
---
 target/openrisc/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/openrisc/meson.build b/target/openrisc/meson.build
index 31608b6dc7f..d51ea1ab753 100644
--- a/target/openrisc/meson.build
+++ b/target/openrisc/meson.build
@@ -22,4 +22,4 @@ openrisc_system_ss.add(files(
 ))
 
 target_arch += {'openrisc': openrisc_ss}
-target_system_arch += {'openrisc': openrisc_system_ss}
+target_common_system_arch += {'openrisc': openrisc_system_ss}
-- 
2.52.0


Re: [PATCH 6/9] target/openrisc: Build system units in common source set
Posted by Richard Henderson 4 weeks, 1 day ago
On 1/8/26 07:06, Philippe Mathieu-Daudé wrote:
> Since previous 2 commits and range 2795bc52af4..5b67dbf1dc3 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é<philmd@linaro.org>
> ---
>   target/openrisc/meson.build | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~