diff options
author | Huacai Chen | 2020-10-07 10:39:28 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-10-12 17:50:24 +0200 |
commit | fbc5884ce2774232ea5a1a7d9b4e605aefc16a2b (patch) | |
tree | 1a9e188a12421b64168e3b56fc34348b9fa58791 | |
parent | build-sys: fix git version from -version (diff) | |
download | qemu-fbc5884ce2774232ea5a1a7d9b4e605aefc16a2b.tar.gz qemu-fbc5884ce2774232ea5a1a7d9b4e605aefc16a2b.tar.xz qemu-fbc5884ce2774232ea5a1a7d9b4e605aefc16a2b.zip |
meson.build: Re-enable KVM support for MIPS
After converting from configure to meson, KVM support is lost for MIPS,
so re-enable it in meson.build.
Fixes: fdb75aeff7c212e1afaaa3a43 ("configure: remove target configuration")
Fixes: 8a19980e3fc42239aae054bc9 ("configure: move accelerator logic to meson")
Cc: aolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Huacai Chen <chenhc@lemote.com>
Message-Id: <1602059975-10115-3-git-send-email-chenhc@lemote.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 26230614ba..0c676af194 100644 --- a/meson.build +++ b/meson.build @@ -59,6 +59,8 @@ elif cpu == 's390x' kvm_targets = ['s390x-softmmu'] elif cpu in ['ppc', 'ppc64'] kvm_targets = ['ppc-softmmu', 'ppc64-softmmu'] +elif cpu in ['mips', 'mips64'] + kvm_targets = ['mips-softmmu', 'mipsel-softmmu', 'mips64-softmmu', 'mips64el-softmmu'] else kvm_targets = [] endif |