From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DTUPo-00057K-1P for qemu-devel@nongnu.org; Wed, 04 May 2005 20:40:32 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DTUND-000389-54 for qemu-devel@nongnu.org; Wed, 04 May 2005 20:37:51 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DTUMX-0001hx-Ed for qemu-devel@nongnu.org; Wed, 04 May 2005 20:37:09 -0400 Received: from [65.74.133.9] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DTUDB-0007kt-0h for qemu-devel@nongnu.org; Wed, 04 May 2005 20:27:29 -0400 From: Paul Brook Subject: Re: [Qemu-devel] QEMU CVS, X-Code 2.0 and Tiger Date: Thu, 5 May 2005 01:22:17 +0100 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505050122.18708.paul@codesourcery.com> 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 On Wednesday 04 May 2005 07:48, Natalia Portillo wrote: > Hi! > > I'm getting (along with a LOT of warnings) the following error when > trying to compiler under Tiger/X-Code2 (GCC 4.0.0-apple): > > TiBook:~/qemu claunia$ make > for d in i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu; do \ > make -C $d all || exit 1 ; \ > done > ../dyngen -c -o opc.h op.o > dyngen: blr expected at the end of op_bsfl_T0_cc > make[1]: *** [opc.h] Error 1 > make: *** [all] Error 1 > > Any idea? Qemu doesn't work with gcc4. Qemu makes assumptions about the structure of the code that gcc generates. These assumptions are no longer valid when compiled with gcc4. Paul