Re: CCFOUND and more

2000-12-28 Thread J . A . Magallon
On 2000.12.28 Keith Owens wrote: > > Yes. Some arch files change CROSS_COMPILE after CC has been set and > expect the change to flow into the definition of CC. This "feature" > only works because '=' stores the value as text and reevaluates the > text each time, automatically picking up any

Re: CCFOUND and more

2000-12-28 Thread J . A . Magallon
On 2000.12.28 Keith Owens wrote: Yes. Some arch files change CROSS_COMPILE after CC has been set and expect the change to flow into the definition of CC. This "feature" only works because '=' stores the value as text and reevaluates the text each time, automatically picking up any

Re: CCFOUND and more

2000-12-27 Thread Keith Owens
On Tue, 26 Dec 2000 21:11:14 +0100, "J . A . Magallon" <[EMAIL PROTECTED]> wrote: >Solving other things, I have realized that all that problem on fast >CC detection (CCFOUND) is easily solved by doing: > CC := $(.) >instead of > CC = $(.) >The find of the

Re: CCFOUND and more

2000-12-27 Thread Keith Owens
On Tue, 26 Dec 2000 21:11:14 +0100, "J . A . Magallon" [EMAIL PROTECTED] wrote: Solving other things, I have realized that all that problem on fast CC detection (CCFOUND) is easily solved by doing: CC := $(.) instead of CC = $(.) The find of the suitable CC

CCFOUND and more

2000-12-26 Thread J . A . Magallon
Hi everyone. Solving other things, I have realized that all that problem on fast CC detection (CCFOUND) is easily solved by doing: CC := $(.) instead of CC = $(.) The find of the suitable CC command is repeated many times along a kernel build. And CC is

CCFOUND and more

2000-12-26 Thread J . A . Magallon
Hi everyone. Solving other things, I have realized that all that problem on fast CC detection (CCFOUND) is easily solved by doing: CC := $(.) instead of CC = $(.) The find of the suitable CC command is repeated many times along a kernel build. And CC is