From patchwork Wed Nov 23 21:40:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Max Filippov X-Patchwork-Id: 127395 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 7BE251007D7 for ; Thu, 24 Nov 2011 08:40:24 +1100 (EST) Received: from localhost ([::1]:54111 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTKYG-0004Bf-0X for incoming@patchwork.ozlabs.org; Wed, 23 Nov 2011 16:40:20 -0500 Received: from eggs.gnu.org ([140.186.70.92]:49100) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTKYA-0004BP-Iz for qemu-devel@nongnu.org; Wed, 23 Nov 2011 16:40:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RTKY9-0001su-5C for qemu-devel@nongnu.org; Wed, 23 Nov 2011 16:40:14 -0500 Received: from mail-bw0-f45.google.com ([209.85.214.45]:39447) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTKY8-0001sn-Vq for qemu-devel@nongnu.org; Wed, 23 Nov 2011 16:40:13 -0500 Received: by bkbzu5 with SMTP id zu5so2331212bkb.4 for ; Wed, 23 Nov 2011 13:40:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:references:in-reply-to :mime-version:content-type:content-transfer-encoding:message-id; bh=UQ+nMAsuzvJAWZmxooGnGKHa4nJJtVK5ZCUyKoS/fDI=; b=SSvz0teEzoCXP0ZbryjpNUKuLKfVtLjVVpsT0iYlvnMHDSR8ZZpvGGbuLTHeC/cDwV w/prvzbR6DN6WL3OrUNl/GqiD/22ukK04j3NIHtT+tcyP/KVoiWZLh9haptcz/AEb1rg 3LimP7PufbITKzaLFSOuPnM7lEMw5RCTgyNMY= Received: by 10.205.134.143 with SMTP id ic15mr26261605bkc.45.1322084411625; Wed, 23 Nov 2011 13:40:11 -0800 (PST) Received: from octofox.metropolis ([188.134.19.124]) by mx.google.com with ESMTPS id dq2sm14088531bkb.11.2011.11.23.13.40.09 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 23 Nov 2011 13:40:10 -0800 (PST) From: Max Filippov To: Mr Dash Four Date: Thu, 24 Nov 2011 01:40:08 +0400 User-Agent: KMail/1.13.7 (Linux/2.6.40.6-0.fc15.x86_64; KDE/4.6.5; x86_64; ; ) References: <4ECCEDFF.1000303@googlemail.com> <201111240051.47241.jcmvbkbc@gmail.com> <4ECD5EDB.40702@googlemail.com> In-Reply-To: <4ECD5EDB.40702@googlemail.com> MIME-Version: 1.0 Message-Id: <201111240140.08335.jcmvbkbc@gmail.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.214.45 Cc: Peter Maydell , qemu-devel@nongnu.org, Paolo Bonzini Subject: Re: [Qemu-devel] cannot build qemu with "--static" configure option X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org > > Did configure reported 'usb net redir' as 'no'? > > Could you try configure and build in a clean directory? > [mr-4@test1 qemu-1.0-rc3]$ ./configure --target-list="arm-linux-user armeb-linux-user" --disable-kvm --disable-strip --disable-xen --disable-spice --disable-werror --disable-sdl --disable-vnc --disable-bluez --disable-check-utests --disable-smartcard --disable-usb-redir --static ... > usb net redir yes > OpenGL support no > libiscsi support no > build guest agent yes > > This is utterly bizarre! Why is "usb net redir" set as "yes" I have no idea! > Could you try configure with the following patch? Thanks. -- Max diff --git a/configure b/configure index f033438..e5566c8 100755 --- a/configure +++ b/configure @@ -759,8 +759,6 @@ for opt do ;; --enable-opengl) opengl="yes" ;; - --*dir) - ;; --disable-rbd) rbd="no" ;; --enable-rbd) rbd="yes" @@ -783,6 +781,8 @@ for opt do ;; --disable-guest-agent) guest_agent="no" ;; + --*dir) + ;; *) echo "ERROR: unknown option $opt"; show_help="yes" ;; esac