[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v11 04/55] target/arm: tcg: add sysemu and user subdirs
From: |
Claudio Fontana |
Subject: |
[RFC v11 04/55] target/arm: tcg: add sysemu and user subdirs |
Date: |
Tue, 23 Mar 2021 16:16:58 +0100 |
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
---
target/arm/tcg/meson.build | 3 +++
target/arm/tcg/sysemu/meson.build | 3 +++
target/arm/tcg/user/meson.build | 3 +++
3 files changed, 9 insertions(+)
create mode 100644 target/arm/tcg/sysemu/meson.build
create mode 100644 target/arm/tcg/user/meson.build
diff --git a/target/arm/tcg/meson.build b/target/arm/tcg/meson.build
index 3b4146d079..abc9d27b63 100644
--- a/target/arm/tcg/meson.build
+++ b/target/arm/tcg/meson.build
@@ -36,3 +36,6 @@ arm_ss.add(when: ['TARGET_AARCH64','CONFIG_TCG'], if_true:
files(
'pauth_helper.c',
'sve_helper.c',
))
+
+subdir('user')
+subdir('sysemu')
diff --git a/target/arm/tcg/sysemu/meson.build
b/target/arm/tcg/sysemu/meson.build
new file mode 100644
index 0000000000..bc11678a0a
--- /dev/null
+++ b/target/arm/tcg/sysemu/meson.build
@@ -0,0 +1,3 @@
+
+arm_softmmu_ss.add(when: ['CONFIG_TCG','CONFIG_SOFTMMU'], if_true: files(
+))
diff --git a/target/arm/tcg/user/meson.build b/target/arm/tcg/user/meson.build
new file mode 100644
index 0000000000..d70a51ea9a
--- /dev/null
+++ b/target/arm/tcg/user/meson.build
@@ -0,0 +1,3 @@
+
+arm_user_ss.add(when: ['CONFIG_TCG','CONFIG_USER_ONLY'], if_true: files(
+))
--
2.26.2
- [RFC v11 00/55] arm cleanup experiment for kvm-only build, Claudio Fontana, 2021/03/23
- [RFC v11 01/55] target/arm: move translate modules to tcg/, Claudio Fontana, 2021/03/23
- [RFC v11 02/55] target/arm: move helpers to tcg/, Claudio Fontana, 2021/03/23
- [RFC v11 03/55] arm: tcg: only build under CONFIG_TCG, Claudio Fontana, 2021/03/23
- [RFC v11 04/55] target/arm: tcg: add sysemu and user subdirs,
Claudio Fontana <=
- [RFC v11 05/55] target/arm: tcg: split mte_helper user-only and sysemu code, Claudio Fontana, 2021/03/23
- [RFC v11 06/55] target/arm: tcg: move sysemu-only parts of debug_helper, Claudio Fontana, 2021/03/23
- [RFC v11 07/55] target/arm: tcg: split tlb_helper user-only and sysemu-only parts, Claudio Fontana, 2021/03/23
- [RFC v11 10/55] target/arm: split off cpu-sysemu.c, Claudio Fontana, 2021/03/23