diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2009-06-09 16:48:51 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-06-16 00:15:45 -0400 |
commit | ba55bd74360ea4b8b95e73ed79474d37ff482b36 (patch) | |
tree | 9474cac06ef169ec0a8f5744e2aefa61286e4410 /arch/powerpc/Kconfig.debug | |
parent | eedacbf02df462d6c915d8d642b23fb450d485c7 (diff) |
powerpc: Add configurable -Werror for arch/powerpc
Add the option to build the code under arch/powerpc with -Werror.
The intention is to make it harder for people to inadvertantly introduce
warnings in the arch/powerpc code. It needs to be configurable so that
if a warning is introduced, people can easily work around it while it's
being fixed.
The option is a negative, ie. don't enable -Werror, so that it will be
turned on for allyes and allmodconfig builds.
The default is n, in the hope that developers will build with -Werror,
that will probably lead to some build breaks, I am prepared to be flamed.
It's not enabled for math-emu, which is a steaming pile of warnings.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/Kconfig.debug')
-rw-r--r-- | arch/powerpc/Kconfig.debug | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug index d79a902d155a..3b1005185390 100644 --- a/arch/powerpc/Kconfig.debug +++ b/arch/powerpc/Kconfig.debug | |||
@@ -2,6 +2,23 @@ menu "Kernel hacking" | |||
2 | 2 | ||
3 | source "lib/Kconfig.debug" | 3 | source "lib/Kconfig.debug" |
4 | 4 | ||
5 | config PPC_DISABLE_WERROR | ||
6 | bool "Don't build arch/powerpc code with -Werror" | ||
7 | default n | ||
8 | help | ||
9 | This option tells the compiler NOT to build the code under | ||
10 | arch/powerpc with the -Werror flag (which means warnings | ||
11 | are treated as errors). | ||
12 | |||
13 | Only enable this if you are hitting a build failure in the | ||
14 | arch/powerpc code caused by a warning, and you don't feel | ||
15 | inclined to fix it. | ||
16 | |||
17 | config PPC_WERROR | ||
18 | bool | ||
19 | depends on !PPC_DISABLE_WERROR | ||
20 | default y | ||
21 | |||
5 | config PRINT_STACK_DEPTH | 22 | config PRINT_STACK_DEPTH |
6 | int "Stack depth to print" if DEBUG_KERNEL | 23 | int "Stack depth to print" if DEBUG_KERNEL |
7 | default 64 | 24 | default 64 |