From: Cho, Yu-Chen Date: Wed, 7 Jul 2021 10:53:11 +0000 (+0800) Subject: target/s390x: meson: add target_user_arch X-Git-Tag: v6.1.0-rc0~25^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=33f6a7d66f9e87368ae43fec4adf0d04d9ded0bd;p=thirdparty%2Fqemu.git target/s390x: meson: add target_user_arch the lack of target_user_arch makes it hard to fully leverage the build system in order to separate user code from sysemu code. Provide it, so that we can avoid the proliferation of #ifdef in target code. Signed-off-by: Claudio Fontana Signed-off-by: Cho, Yu-Chen Acked-by: Cornelia Huck Reviewed-by: Richard Henderson Reviewed-by: Thomas Huth Message-Id: <20210707105324.23400-2-acho@suse.com> Signed-off-by: Cornelia Huck --- diff --git a/target/s390x/meson.build b/target/s390x/meson.build index c42eadb7d24..1219f641120 100644 --- a/target/s390x/meson.build +++ b/target/s390x/meson.build @@ -58,5 +58,8 @@ if host_machine.cpu_family() == 's390x' and cc.has_link_argument('-Wl,--s390-pgs if_true: declare_dependency(link_args: ['-Wl,--s390-pgste'])) endif +s390x_user_ss = ss.source_set() + target_arch += {'s390x': s390x_ss} target_softmmu_arch += {'s390x': s390x_softmmu_ss} +target_user_arch += {'s390x': s390x_user_ss}