From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F4ODG-0003Xi-4d for qemu-devel@nongnu.org; Wed, 01 Feb 2006 15:04:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F4ODB-0003WM-KL for qemu-devel@nongnu.org; Wed, 01 Feb 2006 15:04:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F4ODA-0003W3-UP for qemu-devel@nongnu.org; Wed, 01 Feb 2006 15:04:17 -0500 Received: from [65.74.133.5] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1F4OBs-0003up-NP for qemu-devel@nongnu.org; Wed, 01 Feb 2006 15:02:57 -0500 From: Paul Brook Subject: Re: [Qemu-devel] Qemu on Intel Macs Date: Wed, 1 Feb 2006 20:00:54 +0000 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: <200602012000.55503.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 01 February 2006 09:14, Mike Kronenberg wrote: > Hi there, > > thanks to a tipster I had a look at your sheepshaver 2 days ago :). > qemu dyngen.c is compiling with the added i386 mach lines. Later I > had some problems with osdep.h which is used by the qemu tools. I > disabled it for now. > > Now I stuck with: > softmmu_header.h:204: error can't find a register in class > 'GENERAL_REGS' while reloading 'asm' > which is used by: > target-i386:ops_template_mem.h: In function > 'op_cmpxchgb_kernel_T0_T1_EAX_CC > > I tried with and without the gcc4 fixes... and it seams to be another > register issue which will be a lot of reading form me :) It's a GCC bug (PR15482) triggered by trying to 64-bit operations after reserving most of the available registers for global register vars. There are patches here that may work around the problem: http://lists.gnu.org/archive/html/qemu-devel/2005-11/msg00245.html Paul