From mboxrd@z Thu Jan 1 00:00:00 1970 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) From: Max Filippov Date: Thu, 24 Nov 2011 01:40:08 +0400 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 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201111240140.08335.jcmvbkbc@gmail.com> Subject: Re: [Qemu-devel] cannot build qemu with "--static" configure option List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Mr Dash Four Cc: Peter Maydell , qemu-devel@nongnu.org, Paolo Bonzini > > 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? 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 Thanks. -- Max