diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-15 17:06:38 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-15 17:06:38 -0500 |
commit | 762fb1ddd561aac5b14afac19287672b99242811 (patch) | |
tree | cd52819d17e3d73d18f8b45cbcf602a731c1d420 /Makefile | |
parent | f13399f033ae3d49e1808bacabd83d116844c94e (diff) | |
parent | 480f439c3db0d45d817d66caf3fa8e81a6fac01a (diff) |
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild changes from Michal Marek:
- LTO fixes, but the kallsyms part had to be reverted
- Pass -Werror=implicit-int and -Werror=strict-prototypes to the
compiler by default
- snprintf fix in modpost
- remove GREP_OPTIONS from the environment to be immune against exotic
grep option settings
* 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
kallsyms: Revert back to 128 max symbol length
Kbuild: Ignore GREP_OPTIONS env variable
scripts: kallsyms: Use %zu to print 'size_t'
scripts/bloat-o-meter: use .startswith rather than fragile slicing
scripts/bloat-o-meter: ignore changes in the size of linux_banner
kbuild: replace unbounded sprintf call in modpost
kbuild, bloat-o-meter: fix static detection
Kbuild: Handle longer symbols in kallsyms.c
kbuild: Increase kallsyms max symbol length
Makefile: enable -Werror=implicit-int and -Werror=strict-prototypes by default
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -22,6 +22,9 @@ LC_COLLATE=C | |||
22 | LC_NUMERIC=C | 22 | LC_NUMERIC=C |
23 | export LC_COLLATE LC_NUMERIC | 23 | export LC_COLLATE LC_NUMERIC |
24 | 24 | ||
25 | # Avoid interference with shell env settings | ||
26 | unexport GREP_OPTIONS | ||
27 | |||
25 | # We are using a recursive build, so we need to do a little thinking | 28 | # We are using a recursive build, so we need to do a little thinking |
26 | # to get the ordering right. | 29 | # to get the ordering right. |
27 | # | 30 | # |
@@ -659,6 +662,12 @@ KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) | |||
659 | # conserve stack if available | 662 | # conserve stack if available |
660 | KBUILD_CFLAGS += $(call cc-option,-fconserve-stack) | 663 | KBUILD_CFLAGS += $(call cc-option,-fconserve-stack) |
661 | 664 | ||
665 | # disallow errors like 'EXPORT_GPL(foo);' with missing header | ||
666 | KBUILD_CFLAGS += $(call cc-option,-Werror=implicit-int) | ||
667 | |||
668 | # require functions to have arguments in prototypes, not empty 'int foo()' | ||
669 | KBUILD_CFLAGS += $(call cc-option,-Werror=strict-prototypes) | ||
670 | |||
662 | # use the deterministic mode of AR if available | 671 | # use the deterministic mode of AR if available |
663 | KBUILD_ARFLAGS := $(call ar-option,D) | 672 | KBUILD_ARFLAGS := $(call ar-option,D) |
664 | 673 | ||