[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v6 03/38] arm: tcg: only build under CONFIG_TCG
From: |
Claudio Fontana |
Subject: |
[RFC v6 03/38] arm: tcg: only build under CONFIG_TCG |
Date: |
Thu, 11 Mar 2021 14:29:51 +0100 |
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/tcg/meson.build | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/target/arm/tcg/meson.build b/target/arm/tcg/meson.build
index 0bd4e9d954..3b4146d079 100644
--- a/target/arm/tcg/meson.build
+++ b/target/arm/tcg/meson.build
@@ -12,9 +12,9 @@ gen = [
decodetree.process('t16.decode', extra_args: ['-w', '16',
'--static-decode=disas_t16']),
]
-arm_ss.add(gen)
+arm_ss.add(when: 'CONFIG_TCG', if_true: gen)
-arm_ss.add(files(
+arm_ss.add(when: 'CONFIG_TCG', if_true: files(
'translate.c',
'helper.c',
'iwmmxt_helper.c',
@@ -28,7 +28,7 @@ arm_ss.add(files(
'debug_helper.c',
))
-arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
+arm_ss.add(when: ['TARGET_AARCH64','CONFIG_TCG'], if_true: files(
'translate-a64.c',
'translate-sve.c',
'helper-a64.c',
--
2.26.2
- [RFC v6 00/38] arm cleanup experiment for kvm-only build, Claudio Fontana, 2021/03/11
- [RFC v6 04/38] target/arm: tcg: add sysemu and user subsirs, Claudio Fontana, 2021/03/11
- [RFC v6 01/38] target/arm: move translate modules to tcg/, Claudio Fontana, 2021/03/11
- [RFC v6 05/38] target/arm: only build psci for TCG, Claudio Fontana, 2021/03/11
- [RFC v6 02/38] target/arm: move helpers to tcg/, Claudio Fontana, 2021/03/11
- [RFC v6 06/38] target/arm: split off cpu-sysemu.c, Claudio Fontana, 2021/03/11
- [RFC v6 03/38] arm: tcg: only build under CONFIG_TCG,
Claudio Fontana <=
- [RFC v6 08/38] target/arm: cpu-mmu: fix comment style, Claudio Fontana, 2021/03/11
- [RFC v6 11/38] target/arm: move cpu definitions to common cpu module, Claudio Fontana, 2021/03/11
- [RFC v6 13/38] target/arm: kvm: add stubs for some helpers, Claudio Fontana, 2021/03/11
- [RFC v6 07/38] target/arm: move physical address translation to cpu-mmu, Claudio Fontana, 2021/03/11
- [RFC v6 12/38] target/arm: only perform TCG cpu and machine inits if TCG enabled, Claudio Fontana, 2021/03/11
- [RFC v6 16/38] target/arm: split vfp state setting from tcg helpers, Claudio Fontana, 2021/03/11
- [RFC v6 10/38] target/arm: cpregs: fix style (mostly just comments), Claudio Fontana, 2021/03/11
- [RFC v6 14/38] target/arm: move cpsr_read, cpsr_write to cpu_common, Claudio Fontana, 2021/03/11
- [RFC v6 17/38] target/arm: move arm_mmu_idx* to cpu-mmu, Claudio Fontana, 2021/03/11
- [RFC v6 15/38] target/arm: add temporary stub for arm_rebuild_hflags, Claudio Fontana, 2021/03/11