diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2005-04-30 19:51:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-30 19:51:42 -0400 |
commit | e8e6993178344eb348f60f05b16d9dc30db3b9cf (patch) | |
tree | ddb7d643d247c1f7650245794433b7c1eec92331 /Makefile | |
parent | b3d9ae4b98f6d28481d4d4b768d860a2cfb5805d (diff) |
[PATCH] kbuild: Set NOSTDINC_FLAGS late to speed up compile (a little)
Move definition of NOSTDINC_FLAGS below inclusion of arch Makefile, so
any arch specific settings to $(CC) takes effect before looking up the
compiler include directory.
The previous solution that replaced ':=' with '=' caused gcc to be
invoked one additional time for each directory visited.
This decreases kernel compile time with 0.1 second (3.6 -> 3.5 seconds) when
running make on a fully built kernel
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -332,9 +332,7 @@ KALLSYMS = scripts/kallsyms | |||
332 | PERL = perl | 332 | PERL = perl |
333 | CHECK = sparse | 333 | CHECK = sparse |
334 | 334 | ||
335 | NOSTDINC_FLAGS = -nostdinc -isystem $(shell $(CC) -print-file-name=include) | ||
336 | CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ | 335 | CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ |
337 | CHECKFLAGS += $(NOSTDINC_FLAGS) | ||
338 | MODFLAGS = -DMODULE | 336 | MODFLAGS = -DMODULE |
339 | CFLAGS_MODULE = $(MODFLAGS) | 337 | CFLAGS_MODULE = $(MODFLAGS) |
340 | AFLAGS_MODULE = $(MODFLAGS) | 338 | AFLAGS_MODULE = $(MODFLAGS) |
@@ -531,6 +529,10 @@ endif | |||
531 | 529 | ||
532 | include $(srctree)/arch/$(ARCH)/Makefile | 530 | include $(srctree)/arch/$(ARCH)/Makefile |
533 | 531 | ||
532 | # arch Makefile may override CC so keep this after arch Makefile is included | ||
533 | NOSTDINC_FLAGS := -nostdinc -isystem $(shell $(CC) -print-file-name=include) | ||
534 | CHECKFLAGS += $(NOSTDINC_FLAGS) | ||
535 | |||
534 | # warn about C99 declaration after statement | 536 | # warn about C99 declaration after statement |
535 | CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) | 537 | CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) |
536 | 538 | ||