From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M7UbG-0005af-8V for qemu-devel@nongnu.org; Fri, 22 May 2009 09:15:50 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M7UbB-0005Zp-Tp for qemu-devel@nongnu.org; Fri, 22 May 2009 09:15:49 -0400 Received: from [199.232.76.173] (port=58047 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M7UbA-0005Zl-Ej for qemu-devel@nongnu.org; Fri, 22 May 2009 09:15:45 -0400 Received: from mx20.gnu.org ([199.232.41.8]:13210) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M7UbA-00061L-6R for qemu-devel@nongnu.org; Fri, 22 May 2009 09:15:44 -0400 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M7Ub9-0000nU-65 for qemu-devel@nongnu.org; Fri, 22 May 2009 09:15:43 -0400 From: Paul Brook Subject: Re: [Qemu-devel] Windows runtime error Date: Fri, 22 May 2009 14:15:39 +0100 References: <200905221304.53279.paul@codesourcery.com> <4A16A38A.40800@codemonkey.ws> In-Reply-To: <4A16A38A.40800@codemonkey.ws> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200905221415.40621.paul@codesourcery.com> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Blue Swirl , Consul , qemu-devel@nongnu.org On Friday 22 May 2009, Anthony Liguori wrote: > Paul Brook wrote: > >>> Don't use whole-archive for hwlib or libqemu objects > >>> > >>> Signed-off-by: Blue Swirl > >> > >> hwlib definitely needs whole-archive. > >> > >> Why did this break arm-softmmu? It builds fine for me. > > > > In function `fdctrl_stop_transfer': > > fdc.c:1086: undefined reference to `DMA_release_DREQ' > > > > There appears to be a missing dependency somewhere, I suspect libhw*.a > > doesn't get rebuilt when you move objects from Makefile.target to > > Makefile.hw. > > So a fresh rebuild "fixes" the problem? No, sorry, I mean occasionally you end up with a stale libhw.a. >Blue, can you revert this commit then? Both this (whole-archive) and the preceding fdc change need to be reverted. The scsi bits are probably ok, but the fdc is tied to the ISA DMA engine. We don't currently have a target independent method of handling inter-device data transfer. Paul