From: Tianrui Zhao <zhaotian...@loongson.cn> Add kvm.c and kvm-stub.c into meson.build to compile it when kvm is configed. Meanwhile in meson.build, we set the kvm_targets to loongarch64-softmmu when the cpu is loongarch.
Cc: "Michael S. Tsirkin" <m...@redhat.com> Cc: Cornelia Huck <coh...@redhat.com> Cc: Paolo Bonzini <pbonz...@redhat.com> Cc: "Marc-André Lureau" <marcandre.lur...@redhat.com> Cc: "Daniel P. Berrangé" <berra...@redhat.com> Cc: Thomas Huth <th...@redhat.com> Cc: "Philippe Mathieu-Daudé" <phi...@linaro.org> Cc: Richard Henderson <richard.hender...@linaro.org> Cc: Peter Maydell <peter.mayd...@linaro.org> Cc: Bibo Mao <maob...@loongson.cn> Cc: Song Gao <gaos...@loongson.cn> Cc: Xiaojuan Yang <yangxiaoj...@loongson.cn> Cc: Tianrui Zhao <zhaotian...@loongson.cn> Signed-off-by: Tianrui Zhao <zhaotian...@loongson.cn> Signed-off-by: xianglai li <lixiang...@loongson.cn> --- meson.build | 2 ++ target/loongarch/meson.build | 1 + 2 files changed, 3 insertions(+) diff --git a/meson.build b/meson.build index 1c71ead833..1f8f3ea136 100644 --- a/meson.build +++ b/meson.build @@ -114,6 +114,8 @@ elif cpu in ['riscv32'] kvm_targets = ['riscv32-softmmu'] elif cpu in ['riscv64'] kvm_targets = ['riscv64-softmmu'] +elif cpu in ['loongarch64'] + kvm_targets = ['loongarch64-softmmu'] else kvm_targets = [] endif diff --git a/target/loongarch/meson.build b/target/loongarch/meson.build index 7fbf045a5d..dc2e452b1c 100644 --- a/target/loongarch/meson.build +++ b/target/loongarch/meson.build @@ -27,6 +27,7 @@ loongarch_system_ss.add(files( common_ss.add(when: 'CONFIG_LOONGARCH_DIS', if_true: [files('disas.c'), gen]) +loongarch_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'), if_false: files('kvm-stub.c')) loongarch_ss.add_all(when: 'CONFIG_TCG', if_true: [loongarch_tcg_ss]) target_arch += {'loongarch': loongarch_ss} -- 2.39.1