From: James Bottomley Date: Mon, 27 Feb 2012 21:41:05 +0000 (+0000) Subject: [PARISC] don't unconditionally override CROSS_COMPILE for 64 bit. X-Git-Tag: firefly_0821_release~3680^2~3440^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=aabb70dc23799e09d69d528756471d854f993136;p=firefly-linux-kernel-4.4.55.git [PARISC] don't unconditionally override CROSS_COMPILE for 64 bit. The user may wish to set their own value (for real cross compiles). Since the top level Makefile initialises CROSS_COMPILE to empty by default, we must check it for being empty (rather than for being defined) before we override. Reported-by: Paul Gortmaker Signed-off-by: James Bottomley --- diff --git a/arch/parisc/Makefile b/arch/parisc/Makefile index 55cca1dac431..19ab7b2ea1cd 100644 --- a/arch/parisc/Makefile +++ b/arch/parisc/Makefile @@ -31,7 +31,11 @@ ifdef CONFIG_64BIT UTS_MACHINE := parisc64 CHECKFLAGS += -D__LP64__=1 -m64 WIDTH := 64 + +# FIXME: if no default set, should really try to locate dynamically +ifeq ($(CROSS_COMPILE),) CROSS_COMPILE := hppa64-linux-gnu- +endif else # 32-bit WIDTH := endif