blob: a74ce2e3c33eb402c58418870bc7b1cf62a29285 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Masahiro Yamadaa86fe352014-04-14 18:27:10 +09002# ==========================================================================
3#
4# make W=... settings
5#
6# W=1 - warnings that may be relevant and does not occur too often
7# W=2 - warnings that occur quite often but may still be relevant
8# W=3 - the more obscure warnings, can most likely be ignored
9#
10# $(call cc-option, -W...) handles gcc -W.. options which
11# are not supported by all versions of the compiler
12# ==========================================================================
13
Xiongfeng Wang321cb032018-01-11 17:22:29 +080014KBUILD_CFLAGS += $(call cc-disable-warning, packed-not-aligned)
15
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090016ifeq ("$(origin W)", "command line")
17 export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W)
18endif
19
20ifdef KBUILD_ENABLE_EXTRA_GCC_CHECKS
21warning- := $(empty)
22
23warning-1 := -Wextra -Wunused -Wno-unused-parameter
24warning-1 += -Wmissing-declarations
25warning-1 += -Wmissing-format-attribute
Masahiro Yamada4c8dd952019-05-09 15:46:35 +090026warning-1 += -Wmissing-prototypes
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090027warning-1 += -Wold-style-definition
Masahiro Yamada4c8dd952019-05-09 15:46:35 +090028warning-1 += -Wmissing-include-dirs
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090029warning-1 += $(call cc-option, -Wunused-but-set-variable)
Arnd Bergmannc9c68372016-05-10 23:30:01 +020030warning-1 += $(call cc-option, -Wunused-const-variable)
Xiongfeng Wang321cb032018-01-11 17:22:29 +080031warning-1 += $(call cc-option, -Wpacked-not-aligned)
Miguel Ojeda23066c32018-09-19 02:31:58 +020032warning-1 += $(call cc-option, -Wstringop-truncation)
Masahiro Yamada4c8dd952019-05-09 15:46:35 +090033# The following turn off the warnings enabled by -Wextra
34warning-1 += -Wno-missing-field-initializers
35warning-1 += -Wno-sign-compare
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090036
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090037warning-2 += -Wcast-align
38warning-2 += -Wdisabled-optimization
39warning-2 += -Wnested-externs
40warning-2 += -Wshadow
41warning-2 += $(call cc-option, -Wlogical-op)
Masahiro Yamada4c8dd952019-05-09 15:46:35 +090042warning-2 += -Wmissing-field-initializers
43warning-2 += -Wsign-compare
Arnd Bergmanna76bcf52016-11-10 17:44:44 +010044warning-2 += $(call cc-option, -Wmaybe-uninitialized)
Johannes Thumshirnde8cf9502017-08-30 16:04:13 +020045warning-2 += $(call cc-option, -Wunused-macros)
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090046
47warning-3 := -Wbad-function-cast
48warning-3 += -Wcast-qual
49warning-3 += -Wconversion
50warning-3 += -Wpacked
51warning-3 += -Wpadded
52warning-3 += -Wpointer-arith
53warning-3 += -Wredundant-decls
54warning-3 += -Wswitch-default
55warning-3 += $(call cc-option, -Wpacked-bitfield-compat)
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090056
57warning := $(warning-$(findstring 1, $(KBUILD_ENABLE_EXTRA_GCC_CHECKS)))
58warning += $(warning-$(findstring 2, $(KBUILD_ENABLE_EXTRA_GCC_CHECKS)))
59warning += $(warning-$(findstring 3, $(KBUILD_ENABLE_EXTRA_GCC_CHECKS)))
60
61ifeq ("$(strip $(warning))","")
62 $(error W=$(KBUILD_ENABLE_EXTRA_GCC_CHECKS) is unknown)
63endif
64
65KBUILD_CFLAGS += $(warning)
Behan Webster26ea6bb2014-07-31 21:08:25 -070066else
67
Masahiro Yamada076f4212018-10-30 22:26:33 +090068ifdef CONFIG_CC_IS_CLANG
Masahiro Yamadaa1494302019-05-10 23:10:09 +090069KBUILD_CFLAGS += -Wno-initializer-overrides
Masahiro Yamadaa1494302019-05-10 23:10:09 +090070KBUILD_CFLAGS += -Wno-format
71KBUILD_CFLAGS += -Wno-sign-compare
72KBUILD_CFLAGS += -Wno-format-zero-length
Behan Webster26ea6bb2014-07-31 21:08:25 -070073endif
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090074endif