From patchwork Tue Jun 15 14:32:40 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [6/7] Only treat KVM specific cmdline options for KVM enabled builds Date: Tue, 15 Jun 2010 04:32:40 -0000 From: Jes Sorensen X-Patchwork-Id: 55687 Message-Id: <1276612361-28604-7-git-send-email-Jes.Sorensen@redhat.com> To: mtosatti@redhat.com Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, Jes Sorensen From: Jes Sorensen Only treat KVM specific cmdline options for KVM enabled builds. This fixes build breakage for target MIPS etc. Signed-off-by: Jes Sorensen --- 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) {