From patchwork Mon Mar 25 11:02:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 230624 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 146E82C007B for ; Mon, 25 Mar 2013 22:03:12 +1100 (EST) Received: from localhost ([::1]:53196 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UK5BG-0003kQ-Al for incoming@patchwork.ozlabs.org; Mon, 25 Mar 2013 07:03:10 -0400 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 Received: from zmail13.collab.prod.int.phx2.redhat.com (zmail13.collab.prod.int.phx2.redhat.com [10.5.83.15]) by mx4-phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r2PB2mtQ004130; Mon, 25 Mar 2013 07:02:48 -0400 Date: Mon, 25 Mar 2013 07:02:48 -0400 (EDT) From: Paolo Bonzini To: Gerd Hoffmann Message-ID: <1202297355.13036709.1364209368956.JavaMail.root@redhat.com> In-Reply-To: <51501E64.80904@redhat.com> MIME-Version: 1.0 X-Originating-IP: [10.36.112.34] X-Mailer: Zimbra 7.2.0_GA_2669 (ZimbraWebClient - FF3.0 (Linux)/7.2.0_GA_2669) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 209.132.183.25 Cc: Stefan Hajnoczi , Orit Wasserman , qemu-devel , Juan Quintela Subject: Re: [Qemu-devel] [PATCH 14/42] migration: prepare to access s->state outside critical sections 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 ----- Messaggio originale ----- > Da: "Gerd Hoffmann" > A: "Stefan Hajnoczi" > Cc: "Paolo Bonzini" , "qemu-devel" , "Orit Wasserman" > , "Juan Quintela" > Inviato: Lunedì, 25 marzo 2013 10:52:36 > Oggetto: Re: [Qemu-devel] [PATCH 14/42] migration: prepare to access s->state outside critical sections > > Hi, > > > http://buildbot.b1-systems.de/qemu/builders/default_mingw32/builds/566/steps/compile/logs/stdio > > > > 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? > > 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? Paolo diff --git a/configure b/configure index 46a7594..a324ca5 100755 --- a/configure +++ b/configure @@ -931,9 +931,9 @@ case "$cpu" in LDFLAGS="-m64 $LDFLAGS" ;; i386) - QEMU_CFLAGS="-m32 $QEMU_CFLAGS" - LDFLAGS="-m32 $LDFLAGS" - cc_i386='$(CC) -m32' + QEMU_CFLAGS="-m32 -mcpu=i486 $QEMU_CFLAGS" + LDFLAGS="-m32 -mcpu=i486 $LDFLAGS" + cc_i386='$(CC) -m32 -mcpu=i486' ;; x86_64) QEMU_CFLAGS="-m64 $QEMU_CFLAGS"