From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JuF2f-0000qy-Ex for qemu-devel@nongnu.org; Thu, 08 May 2008 18:56:49 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JuF2a-0000p1-HG for qemu-devel@nongnu.org; Thu, 08 May 2008 18:56:48 -0400 Received: from [199.232.76.173] (port=38678 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JuF2a-0000ov-AV for qemu-devel@nongnu.org; Thu, 08 May 2008 18:56:44 -0400 Received: from mail.codesourcery.com ([65.74.133.4]:40608) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JuF2Z-0006f3-PT for qemu-devel@nongnu.org; Thu, 08 May 2008 18:56:44 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [RFC][PATCH] Use HOST_CC instead of CC on TCG only targets Date: Thu, 8 May 2008 23:56:39 +0100 References: <20080508224412.GA30981@volta.aurel32.net> In-Reply-To: <20080508224412.GA30981@volta.aurel32.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200805082356.39655.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 Cc: Aurelien Jarno On Thursday 08 May 2008, Aurelien Jarno wrote: > Now that we have 3 TCG only targets (arm, cris, sparc) and 1 being > actively converted (mips), I think it does not make sense anymore to > build those targets with gcc-3.4. FTR I'm (slowly) working on converting m68k. > +ifdef CONFIG_NO_DYNGEN_OP > +CC=$(HOST_CC) > +endif This breaks cross builds. $(HOST_CC) is the compiler for the build system (yes, it's mis-named). Paul