From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JqZen-0007rS-K3 for qemu-devel@nongnu.org; Mon, 28 Apr 2008 16:09:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JqZej-0007hE-UD for qemu-devel@nongnu.org; Mon, 28 Apr 2008 16:09:01 -0400 Received: from [199.232.76.173] (port=36035 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JqZej-0007h6-Qu for qemu-devel@nongnu.org; Mon, 28 Apr 2008 16:08:57 -0400 Received: from relay01.mx.bawue.net ([193.7.176.67]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JqZLh-0006rK-8O for qemu-devel@nongnu.org; Mon, 28 Apr 2008 15:49:17 -0400 Received: from lagash (88-106-226-17.dynamic.dsl.as9105.com [88.106.226.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by relay01.mx.bawue.net (Postfix) with ESMTP id 167AD48916 for ; Mon, 28 Apr 2008 21:49:15 +0200 (CEST) Received: from ths by lagash with local (Exim 4.69) (envelope-from ) id 1JqZLc-00046H-D8 for qemu-devel@nongnu.org; Mon, 28 Apr 2008 20:49:12 +0100 Date: Mon, 28 Apr 2008 20:49:12 +0100 From: Thiemo Seufer Subject: Re: [Qemu-devel] Which compiler to use to compile current SVN Message-ID: <20080428194912.GE16597@networkno.de> References: <4815CC5E.6090108@wasp.net.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4815CC5E.6090108@wasp.net.au> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Brad Campbell wrote: > G'day all, > > I can't get current SVN to compile at all here (same problem with regard > to register spill other people are seeing). I applied Blue Swirls patches > (as seen here > http://lists.gnu.org/archive/html/qemu-devel/2008-03/msg00320.html) and > cleaned up the rejects, but I just get stumped further on... > > gcc-3.4 -fomit-frame-pointer -I. -I.. > -I/tracks/src/src/qemu.new/target-i386 -I/tracks/src/src/qemu.new -MMD > -MP -DNEED_CPU_H -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 > -D_LARGEFILE_SOURCE -I/tracks/src/src/qemu.new/tcg > -I/tracks/src/src/qemu.new/tcg/i386 -I/tracks/src/src/qemu.new/fpu > -DHAS_AUDIO -DHAS_AUDIO_CHOICE -I/tracks/src/src/qemu.new/slirp > -march=pentium-mmx -Wall -O2 -g -fno-strict-aliasing -m32 -c -o helper.o ^^^^^^^^^^^^^^^^^^ Too much optimization. IIRC a known problem, -march needs to be a pre-MMX cpu. Thiemo