blob: 7d39b27d24a91774aa7c8f672c715035e2009f79 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Masahiro Yamada6419e142014-08-05 15:56:43 +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
Tom Rini473fc272021-06-17 18:07:25 -040014KBUILD_CFLAGS += $(call cc-disable-warning, packed-not-aligned)
15
Masahiro Yamada6419e142014-08-05 15:56:43 +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
26warning-1 += $(call cc-option, -Wmissing-prototypes)
27warning-1 += -Wold-style-definition
28warning-1 += $(call cc-option, -Wmissing-include-dirs)
29warning-1 += $(call cc-option, -Wunused-but-set-variable)
Tom Rini473fc272021-06-17 18:07:25 -040030warning-1 += $(call cc-option, -Wunused-const-variable)
31warning-1 += $(call cc-option, -Wpacked-not-aligned)
32warning-1 += $(call cc-option, -Wstringop-truncation)
Masahiro Yamada6419e142014-08-05 15:56:43 +090033warning-1 += $(call cc-disable-warning, missing-field-initializers)
Tom Rini473fc272021-06-17 18:07:25 -040034warning-1 += $(call cc-disable-warning, sign-compare)
Masahiro Yamada6419e142014-08-05 15:56:43 +090035
Masahiro Yamada6419e142014-08-05 15:56:43 +090036warning-2 := -Waggregate-return
37warning-2 += -Wcast-align
38warning-2 += -Wdisabled-optimization
39warning-2 += -Wnested-externs
40warning-2 += -Wshadow
41warning-2 += $(call cc-option, -Wlogical-op)
42warning-2 += $(call cc-option, -Wmissing-field-initializers)
Tom Rini473fc272021-06-17 18:07:25 -040043warning-2 += $(call cc-option, -Wsign-compare)
44warning-2 += $(call cc-option, -Wmaybe-uninitialized)
45warning-2 += $(call cc-option, -Wunused-macros)
Masahiro Yamada6419e142014-08-05 15:56:43 +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)
56warning-3 += $(call cc-option, -Wvla)
57
58warning := $(warning-$(findstring 1, $(KBUILD_ENABLE_EXTRA_GCC_CHECKS)))
59warning += $(warning-$(findstring 2, $(KBUILD_ENABLE_EXTRA_GCC_CHECKS)))
60warning += $(warning-$(findstring 3, $(KBUILD_ENABLE_EXTRA_GCC_CHECKS)))
61
62ifeq ("$(strip $(warning))","")
63 $(error W=$(KBUILD_ENABLE_EXTRA_GCC_CHECKS) is unknown)
64endif
65
66KBUILD_CFLAGS += $(warning)
Masahiro Yamada4b83f0d2017-02-27 15:24:45 +090067
Masahiro Yamada6419e142014-08-05 15:56:43 +090068endif