]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - scripts/Makefile.extrawarn
x86/speculation/mmio: Enable CPU Fill buffer clearing on idle
[mirror_ubuntu-jammy-kernel.git] / scripts / Makefile.extrawarn
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
a86fe353 2# ==========================================================================
a86fe353
MY
3# make W=... settings
4#
64a91907
MY
5# There are three warning groups enabled by W=1, W=2, W=3.
6# They are independent, and can be combined like W=12 or W=123.
a86fe353
MY
7# ==========================================================================
8
321cb030
XW
9KBUILD_CFLAGS += $(call cc-disable-warning, packed-not-aligned)
10
e27128db
MY
11# backward compatibility
12KBUILD_EXTRA_WARN ?= $(KBUILD_ENABLE_EXTRA_GCC_CHECKS)
13
a86fe353 14ifeq ("$(origin W)", "command line")
e27128db 15 KBUILD_EXTRA_WARN := $(W)
a86fe353
MY
16endif
17
e27128db
MY
18export KBUILD_EXTRA_WARN
19
64a91907
MY
20#
21# W=1 - warnings which may be relevant and do not occur too often
22#
e27128db 23ifneq ($(findstring 1, $(KBUILD_EXTRA_WARN)),)
a86fe353 24
64a91907
MY
25KBUILD_CFLAGS += -Wextra -Wunused -Wno-unused-parameter
26KBUILD_CFLAGS += -Wmissing-declarations
27KBUILD_CFLAGS += -Wmissing-format-attribute
28KBUILD_CFLAGS += -Wmissing-prototypes
29KBUILD_CFLAGS += -Wold-style-definition
30KBUILD_CFLAGS += -Wmissing-include-dirs
31KBUILD_CFLAGS += $(call cc-option, -Wunused-but-set-variable)
32KBUILD_CFLAGS += $(call cc-option, -Wunused-const-variable)
33KBUILD_CFLAGS += $(call cc-option, -Wpacked-not-aligned)
34KBUILD_CFLAGS += $(call cc-option, -Wstringop-truncation)
4c8dd95a 35# The following turn off the warnings enabled by -Wextra
64a91907
MY
36KBUILD_CFLAGS += -Wno-missing-field-initializers
37KBUILD_CFLAGS += -Wno-sign-compare
355a3587 38KBUILD_CFLAGS += -Wno-type-limits
a86fe353 39
6863f564
MY
40KBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN1
41
26ea6bb1
BW
42else
43
64a91907
MY
44# Some diagnostics enabled by default are noisy.
45# Suppress them by using -Wno... except for W=1.
46
076f421d 47ifdef CONFIG_CC_IS_CLANG
a1494304 48KBUILD_CFLAGS += -Wno-initializer-overrides
a1494304
MY
49KBUILD_CFLAGS += -Wno-format
50KBUILD_CFLAGS += -Wno-sign-compare
51KBUILD_CFLAGS += -Wno-format-zero-length
82f2bc2f 52KBUILD_CFLAGS += $(call cc-disable-warning, pointer-to-enum-cast)
afe956c5 53KBUILD_CFLAGS += -Wno-tautological-constant-out-of-range-compare
62d38a1f 54KBUILD_CFLAGS += $(call cc-disable-warning, unaligned-access)
26ea6bb1 55endif
64a91907
MY
56
57endif
58
59#
60# W=2 - warnings which occur quite often but may still be relevant
61#
e27128db 62ifneq ($(findstring 2, $(KBUILD_EXTRA_WARN)),)
64a91907 63
64a91907 64KBUILD_CFLAGS += -Wdisabled-optimization
64a91907
MY
65KBUILD_CFLAGS += -Wshadow
66KBUILD_CFLAGS += $(call cc-option, -Wlogical-op)
67KBUILD_CFLAGS += -Wmissing-field-initializers
355a3587 68KBUILD_CFLAGS += -Wtype-limits
64a91907
MY
69KBUILD_CFLAGS += $(call cc-option, -Wmaybe-uninitialized)
70KBUILD_CFLAGS += $(call cc-option, -Wunused-macros)
71
6863f564
MY
72KBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN2
73
64a91907
MY
74endif
75
76#
77# W=3 - more obscure warnings, can most likely be ignored
78#
e27128db 79ifneq ($(findstring 3, $(KBUILD_EXTRA_WARN)),)
64a91907
MY
80
81KBUILD_CFLAGS += -Wbad-function-cast
095fbca0 82KBUILD_CFLAGS += -Wcast-align
64a91907
MY
83KBUILD_CFLAGS += -Wcast-qual
84KBUILD_CFLAGS += -Wconversion
85KBUILD_CFLAGS += -Wpacked
86KBUILD_CFLAGS += -Wpadded
87KBUILD_CFLAGS += -Wpointer-arith
88KBUILD_CFLAGS += -Wredundant-decls
a97ea93e 89KBUILD_CFLAGS += -Wsign-compare
64a91907
MY
90KBUILD_CFLAGS += -Wswitch-default
91KBUILD_CFLAGS += $(call cc-option, -Wpacked-bitfield-compat)
92
6863f564
MY
93KBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN3
94
a86fe353 95endif