From: Jes Sorensen <jes.soren...@redhat.com> Only treat KVM specific cmdline options for KVM enabled builds. This fixes build breakage for target MIPS etc.
Signed-off-by: Jes Sorensen <jes.soren...@redhat.com> --- vl.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/vl.c b/vl.c index 9e9c176..e4a9aa9 100644 --- a/vl.c +++ b/vl.c @@ -3264,6 +3264,7 @@ int main(int argc, char **argv, char **envp) case QEMU_OPTION_no_kvm: kvm_allowed = 0; break; +#ifdef CONFIG_KVM case QEMU_OPTION_no_kvm_irqchip: { kvm_irqchip = 0; kvm_pit = 0; @@ -3281,6 +3282,7 @@ int main(int argc, char **argv, char **envp) kvm_nested = 1; break; } +#endif #if defined(TARGET_I386) || defined(TARGET_X86_64) || defined(TARGET_IA64) || defined(__linux__) case QEMU_OPTION_pcidevice: if (assigned_devices_index >= MAX_DEV_ASSIGN_CMDLINE) { -- 1.6.6.1