blob: 8d5357053f8653d83e51f86d935341dd9f39f53d [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
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)
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)
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090032warning-1 += $(call cc-disable-warning, missing-field-initializers)
Lee Jones7599ea82016-01-12 14:24:18 +000033warning-1 += $(call cc-disable-warning, sign-compare)
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090034
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090035warning-2 := -Waggregate-return
36warning-2 += -Wcast-align
37warning-2 += -Wdisabled-optimization
38warning-2 += -Wnested-externs
39warning-2 += -Wshadow
40warning-2 += $(call cc-option, -Wlogical-op)
41warning-2 += $(call cc-option, -Wmissing-field-initializers)
Lee Jones7599ea82016-01-12 14:24:18 +000042warning-2 += $(call cc-option, -Wsign-compare)
Arnd Bergmanna76bcf52016-11-10 17:44:44 +010043warning-2 += $(call cc-option, -Wmaybe-uninitialized)
Johannes Thumshirnde8cf952017-08-30 16:04:13 +020044warning-2 += $(call cc-option, -Wunused-macros)
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090045
46warning-3 := -Wbad-function-cast
47warning-3 += -Wcast-qual
48warning-3 += -Wconversion
49warning-3 += -Wpacked
50warning-3 += -Wpadded
51warning-3 += -Wpointer-arith
52warning-3 += -Wredundant-decls
53warning-3 += -Wswitch-default
54warning-3 += $(call cc-option, -Wpacked-bitfield-compat)
55warning-3 += $(call cc-option, -Wvla)
56
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
Michal Marek5631d9c2015-08-19 17:36:41 +020068ifeq ($(cc-name),clang)
Behan Webster26ea6bb2014-07-31 21:08:25 -070069KBUILD_CFLAGS += $(call cc-disable-warning, initializer-overrides)
70KBUILD_CFLAGS += $(call cc-disable-warning, unused-value)
71KBUILD_CFLAGS += $(call cc-disable-warning, format)
Behan Webster26ea6bb2014-07-31 21:08:25 -070072KBUILD_CFLAGS += $(call cc-disable-warning, sign-compare)
73KBUILD_CFLAGS += $(call cc-disable-warning, format-zero-length)
74KBUILD_CFLAGS += $(call cc-disable-warning, uninitialized)
75endif
Masahiro Yamadaa86fe352014-04-14 18:27:10 +090076endif