public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "J . A . Magallon" <jamagallon@able.es>
To: linux-kernel <linux-kernel@vger.kernel.org>
Subject: CCFOUND and more
Date: Tue, 26 Dec 2000 21:11:14 +0100	[thread overview]
Message-ID: <20001226211114.A1511@werewolf.able.es> (raw)

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 not anything that can change along a kernel
build. So former syntax solves all the problems, CC detection can
be so complex as you want because is done only once.

Same is valid for other Makefile variables:
CPP = $(CC) -E ===> CPP := $(CC) -E

(If you want to test how many shells are spawned when using CC, try
CC  = $(shell echo "===== CC EVAL ===============" >&2; if ........
vs
CC  := $(shell echo "===== CC EVAL ===============" >&2; if .......

Is there something I am missing ?

-- 
J.A. Magallon                                         $> cd pub
mailto:jamagallon@able.es                             $> more beer

Linux werewolf 2.2.19-pre3-aa2 #9 SMP Tue Dec 26 12:26:43 CET 2000 i686

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

             reply	other threads:[~2000-12-26 20:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-12-26 20:11 J . A . Magallon [this message]
2000-12-28  4:22 ` CCFOUND and more Keith Owens
2000-12-29  1:27   ` J . A . Magallon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20001226211114.A1511@werewolf.able.es \
    --to=jamagallon@able.es \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox