[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 01/14] target/s390x: meson: add target_user_arch
From: |
Cho, Yu-Chen |
Subject: |
[PATCH v7 01/14] target/s390x: meson: add target_user_arch |
Date: |
Wed, 7 Jul 2021 18:53:11 +0800 |
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 <cfontana@suse.de>
Signed-off-by: Cho, Yu-Chen <acho@suse.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
target/s390x/meson.build | 3 +++
1 file changed, 3 insertions(+)
diff --git a/target/s390x/meson.build b/target/s390x/meson.build
index c42eadb7d2..1219f64112 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}
--
2.32.0
- [PATCH v7 00/14] s390x cleanup, Cho, Yu-Chen, 2021/07/07
- [PATCH v7 01/14] target/s390x: meson: add target_user_arch,
Cho, Yu-Chen <=
- [PATCH v7 02/14] hw/s390x: rename tod-qemu.c to tod-tcg.c, Cho, Yu-Chen, 2021/07/07
- [PATCH v7 03/14] hw/s390x: tod: make explicit checks for accelerators when initializing, Cho, Yu-Chen, 2021/07/07
- [PATCH v7 04/14] hw/s390x: only build tod-tcg from the CONFIG_TCG build, Cho, Yu-Chen, 2021/07/07
- [PATCH v7 05/14] target/s390x: remove tcg-stub.c, Cho, Yu-Chen, 2021/07/07
- [PATCH v7 06/14] target/s390x: rename internal.h to s390x-internal.h, Cho, Yu-Chen, 2021/07/07