diff mbox series

[RFC,v12,09/65] target/arm: only build psci for TCG

Message ID 20210326193701.5981-10-cfontana@suse.de (mailing list archive)
State New, archived
Headers show
Series arm cleanup experiment for kvm-only build | expand

Commit Message

Claudio Fontana March 26, 2021, 7:36 p.m. UTC
We do not move psci.c to tcg/ because we expect other
hypervisors to use it (waiting for HVF enablement).

Signed-off-by: Claudio Fontana <cfontana@suse.de>
Cc: Alexander Graf <agraf@csgraf.de>
---
 target/arm/meson.build | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Richard Henderson March 28, 2021, 3:43 p.m. UTC | #1
On 3/26/21 1:36 PM, Claudio Fontana wrote:
> We do not move psci.c to tcg/ because we expect other
> hypervisors to use it (waiting for HVF enablement).
> 
> Signed-off-by: Claudio Fontana<cfontana@suse.de>
> Cc: Alexander Graf<agraf@csgraf.de>
> ---
>   target/arm/meson.build | 4 ++++
>   1 file changed, 4 insertions(+)

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

r~
diff mbox series

Patch

diff --git a/target/arm/meson.build b/target/arm/meson.build
index 0172937b40..a9fdada0cc 100644
--- a/target/arm/meson.build
+++ b/target/arm/meson.build
@@ -19,8 +19,12 @@  arm_softmmu_ss.add(files(
   'arm-powerctl.c',
   'machine.c',
   'monitor.c',
+))
+
+arm_softmmu_ss.add(when: 'CONFIG_TCG', if_true: files(
   'psci.c',
 ))
+
 arm_user_ss = ss.source_set()
 
 subdir('tcg')