aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBorislav Petkov <bp@alien8.de>2011-03-01 03:35:29 -0500
committerMichal Marek <mmarek@suse.cz>2011-03-09 09:35:35 -0500
commit4a5838ad9d2d4f7354a310982483f4c76aa0abeb (patch)
treefd037adafd8d7dd367292fe20ab290ccc79569a4 /Makefile
parentde933bd833be1a53bd361c9a327afd3c65413351 (diff)
kbuild: Add extra gcc checks
Add a 'W=1' Makefile switch which adds additional checking per build object. The idea behind this option is targeted at developers who, in the process of writing their code, want to do the occasional make W=1 [target.o] and let gcc do more extensive code checking for them. Then, they could eyeball the output for valid gcc warnings about various bugs/discrepancies which are not reported during the normal build process. For more background information and a use case, read through this thread: http://marc.info/?l=kernel-janitors&m=129802065918147&w=2 Cc: Michal Marek <mmarek@suse.cz> Cc: linux-kbuild@vger.kernel.org Acked-by: Sam Ravnborg <sam@ravnborg.org> Acked-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Borislav Petkov <bp@alien8.de> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index abb49bf8596e..2b1e37da2bb5 100644
--- a/Makefile
+++ b/Makefile
@@ -102,6 +102,10 @@ ifeq ("$(origin O)", "command line")
102 KBUILD_OUTPUT := $(O) 102 KBUILD_OUTPUT := $(O)
103endif 103endif
104 104
105ifeq ("$(origin W)", "command line")
106 export KBUILD_ENABLE_EXTRA_GCC_CHECKS := 1
107endif
108
105# That's our default target when none is given on the command line 109# That's our default target when none is given on the command line
106PHONY := _all 110PHONY := _all
107_all: 111_all:
@@ -1262,6 +1266,7 @@ help:
1262 @echo ' make O=dir [targets] Locate all output files in "dir", including .config' 1266 @echo ' make O=dir [targets] Locate all output files in "dir", including .config'
1263 @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)' 1267 @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)'
1264 @echo ' make C=2 [targets] Force check of all c source with $$CHECK' 1268 @echo ' make C=2 [targets] Force check of all c source with $$CHECK'
1269 @echo ' make W=1 [targets] Enable extra gcc checks'
1265 @echo '' 1270 @echo ''
1266 @echo 'Execute "make" or "make all" to build all targets marked with [*] ' 1271 @echo 'Execute "make" or "make all" to build all targets marked with [*] '
1267 @echo 'For further info see the ./README file' 1272 @echo 'For further info see the ./README file'