| To: | Jun Sun <jsun@mvista.com> |
|---|---|
| Subject: | Re: [PATCH] allow CROSS_COMPILE override |
| From: | Brian Murphy <brian@murphy.dk> |
| Date: | Thu, 20 Feb 2003 23:03:38 +0100 |
| Cc: | linux-mips@linux-mips.org |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <20030220124703.H7466@mvista.com> <3E55455A.8080403@murphy.dk> <20030220132300.I7466@mvista.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020623 Debian/1.0.0-0.woody.1 |
Jun Sun wrote: Is this allowed? Can't find any such usage in kernel other than the worrisome comment below: arch/arm/Makefile:# Grr, ?= doesn't work as all the other assignment operators do. Make bug? The arm code does this: # Only set INCDIR if its not already defined above # Grr, ?= doesn't work as all the other assignment operators do. Make bug? ifeq ($(origin INCDIR), undefined) INCDIR := $(MACHINE) endif where the make docs say: INCDIR ?= $(MACHINE) is the same as ifeq ($(origin INCDIR), undefined) INCDIR = $(MACHINE) endif which means INCDIR will reflect changes to MACHINE. The := form sets INCDIR once and for all. What do you want? I can't see that this should be a problem in the arm makefile. Perhaps I'm missing something. /Brian |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] allow CROSS_COMPILE override, Daniel Jacobowitz |
|---|---|
| Next by Date: | Re: [PATCH] allow CROSS_COMPILE override, Brian Murphy |
| Previous by Thread: | Re: [PATCH] allow CROSS_COMPILE override, Pete Popov |
| Next by Thread: | Re: [PATCH] allow CROSS_COMPILE override, Jun Sun |
| Indexes: | [Date] [Thread] [Top] [All Lists] |