From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1H27jc-0002mV-F2 for qemu-devel@nongnu.org; Wed, 03 Jan 2007 10:08:56 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1H27jX-0002hf-L3 for qemu-devel@nongnu.org; Wed, 03 Jan 2007 10:08:56 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H27jX-0002hb-IE for qemu-devel@nongnu.org; Wed, 03 Jan 2007 10:08:51 -0500 Received: from [193.7.176.60] (helo=mail.bawue.net) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1H27jW-0000j1-W0 for qemu-devel@nongnu.org; Wed, 03 Jan 2007 10:08:51 -0500 Date: Wed, 3 Jan 2007 15:09:43 +0000 From: Thiemo Seufer Subject: Re: [Qemu-devel] qemu Makefile configure Message-ID: <20070103150943.GD5849@networkno.de> References: <20070103135950.GB5849@networkno.de> <20070103142339.GE24482@aon.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070103142339.GE24482@aon.at> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Bernhard Fischer Cc: qemu-devel@nongnu.org Bernhard Fischer wrote: > On Wed, Jan 03, 2007 at 01:59:50PM +0000, Thiemo Seufer wrote: > > >All of this works fine for me, but patches of this sort are likely to > >break things, so please test and comment. > > > > > >Thiemo > > > > >Index: Makefile.target > >=================================================================== > >RCS file: /sources/qemu/qemu/Makefile.target,v > >retrieving revision 1.134 > >diff -u -p -r1.134 Makefile.target > >--- Makefile.target 7 Dec 2006 18:15:35 -0000 1.134 > >+++ Makefile.target 3 Jan 2007 13:47:50 -0000 > >@@ -91,66 +91,66 @@ endif > > endif > > > > ifeq ($(ARCH),x86_64) > >-OP_CFLAGS=$(CFLAGS) -falign-functions=0 > >-LDFLAGS+=-Wl,-T,$(SRC_PATH)/x86_64.ld > >+LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld > > endif > > > > ifeq ($(ARCH),ppc) > -> CFLAGS+= -D__powerpc__ > + CPPFLAGS += -D__powerpc__ > > (doesn't cpp already define that on ppc?) Apparently it's sometimes __ppc__. Thiemo