From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from pasmtpa.tele.dk ([80.160.77.114]:60535 "EHLO pasmtpA.tele.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751750AbXJUSVO (ORCPT ); Sun, 21 Oct 2007 14:21:14 -0400 Date: Sun, 21 Oct 2007 20:22:45 +0200 From: Sam Ravnborg Subject: Re: [PATCH] m68k: Use cc-cross-prefix (was: Re: [GI:wqT PULL] kbuild updates - second round) Message-ID: <20071021182245.GA5840@uranus.ravnborg.org> References: <20071019204415.GA623@uranus.ravnborg.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-arch-owner@vger.kernel.org To: Geert Uytterhoeven Cc: Linus Torvalds , Andrew Morton , linux-kbuild , linux arch , LKML , Linux/m68k , Rob Landley List-ID: On Sun, Oct 21, 2007 at 07:57:39PM +0200, Geert Uytterhoeven wrote: > On Fri, 19 Oct 2007, Sam Ravnborg wrote: > > The cc-cross-prefix is new and developed on request from Geert Uytterhoeven. > > With cc-cross-prefix it is now much easier to have a few default > > cross compile prefixes and defaulting to none - if none of them were present. > > ARCH maintainers are expected to pick up this feature soon. > > Thanks, seems to work fine! > > m68k: Use cc-cross-prefix > > Signed-off-by: Geert Uytterhoeven > --- > arch/m68k/Makefile | 8 +++----- > 1 file changed, 3 insertions(+), 5 deletions(-) > > --- a/arch/m68k/Makefile > +++ b/arch/m68k/Makefile > @@ -13,16 +13,14 @@ > # Copyright (C) 1994 by Hamish Macdonald > # > > -# test for cross compiling > -COMPILE_ARCH = $(shell uname -m) > - > # override top level makefile > AS += -m68020 > LDFLAGS := -m m68kelf > LDFLAGS_MODULE += -T $(srctree)/arch/m68k/kernel/module.lds > ifneq ($(COMPILE_ARCH),$(ARCH)) > - # prefix for cross-compiling binaries > - CROSS_COMPILE = m68k-linux-gnu- > + ifeq ($(CROSS_COMPILE),) > + CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- m68k-linux-) > + endif > endif Patch seems bogus. You kill the assignment to COMPILE_ARCH yet you refer to it in the line: ifneq ($(COMPILE_ARCH),... Did you mean to use $(SUBARCH) here? Sam