From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UK5B2-0003jw-7H for qemu-devel@nongnu.org; Mon, 25 Mar 2013 07:02:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UK5Aw-0006rP-Ph for qemu-devel@nongnu.org; Mon, 25 Mar 2013 07:02:56 -0400 Received: from mx4-phx2.redhat.com ([209.132.183.25]:56569) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UK5Aw-0006rI-Hv for qemu-devel@nongnu.org; Mon, 25 Mar 2013 07:02:50 -0400 Date: Mon, 25 Mar 2013 07:02:48 -0400 (EDT) From: Paolo Bonzini Message-ID: <1202297355.13036709.1364209368956.JavaMail.root@redhat.com> In-Reply-To: <51501E64.80904@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 14/42] migration: prepare to access s->state outside critical sections List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: Stefan Hajnoczi , Orit Wasserman , qemu-devel , Juan Quintela ----- Messaggio originale ----- > Da: "Gerd Hoffmann" > A: "Stefan Hajnoczi" > Cc: "Paolo Bonzini" , "qemu-devel" , "Orit Wasserman" > , "Juan Quintela" > Inviato: Luned=C3=AC, 25 marzo 2013 10:52:36 > Oggetto: Re: [Qemu-devel] [PATCH 14/42] migration: prepare to access s->s= tate outside critical sections >=20 > Hi, >=20 > > http://buildbot.b1-systems.de/qemu/builders/default_mingw32/builds/566/= steps/compile/logs/stdio > >=20 > > The latest RHEL6 mingw gcc is version 4.4 but this buildslave is > > RHEL6.1 so perhaps it's an older version that is missing the > > atomics builtins? >=20 > No, it's RHEL-6.4 actually, even though the name suggests otherwise > (was a bad idea to include the minor rev in the buildslave name ...). Can you check if this fixes it? diff --git a/configure b/configure index 46a7594..a324ca5 100755 --- a/configure +++ b/configure @@ -931,9 +931,9 @@ case "$cpu" in LDFLAGS=3D"-m64 $LDFLAGS" ;; i386) - QEMU_CFLAGS=3D"-m32 $QEMU_CFLAGS" - LDFLAGS=3D"-m32 $LDFLAGS" - cc_i386=3D'$(CC) -m32' + QEMU_CFLAGS=3D"-m32 -mcpu=3Di486 $QEMU_CFLAGS" + LDFLAGS=3D"-m32 -mcpu=3Di486 $LDFLAGS" + cc_i386=3D'$(CC) -m32 -mcpu=3Di486' ;; x86_64) QEMU_CFLAGS=3D"-m64 $QEMU_CFLAGS" Paolo