]> Git Repo - linux.git/commitdiff
kbuild: Only default to -Werror if COMPILE_TEST
authorMarco Elver <[email protected]>
Tue, 7 Sep 2021 21:12:08 +0000 (23:12 +0200)
committerLinus Torvalds <[email protected]>
Wed, 8 Sep 2021 01:47:04 +0000 (18:47 -0700)
The cross-product of the kernel's supported toolchains, architectures,
and configuration options is large. So large, that it's generally
accepted to be infeasible to enumerate and build+test them all
(many compile-testers rely on randomly generated configs).

Without the possibility to enumerate all possible combinations of
toolchains, architectures, and configuration options, it is inevitable
that compiler warnings in this space exist.

With -Werror, this means that an innumerable set of kernels are now
broken, yet had been perfectly usable before (confused compilers, code
with warnings unused, or luck).

Distributors will necessarily pick a point in the toolchain X arch X
config space, and if unlucky, will have a broken build. Granted, those
will likely disable CONFIG_WERROR and move on.

The kernel's default configuration is unlikely to be suitable for all
users, but it's inappropriate to force many users to set CONFIG_WERROR=n.

This also holds for CI systems which are focused on runtime testing,
where the odd warning in some subsystem will disrupt testing of the rest
of the kernel. Many of those runtime-focused CI systems run tests or
fuzz the kernel using runtime debugging tools. Runtime testing of
different subsystems can proceed in parallel, and potentially uncover
serious bugs; halting runtime testing of the entire kernel because of
the odd warning (now error) in a subsystem or driver is simply
inappropriate.

Therefore, runtime-focused CI systems will likely choose CONFIG_WERROR=n
as well.

The appropriate usecase for -Werror is therefore compile-test focused
builds (often done by developers or CI systems).

Reflect this in the Kconfig option by making the default value of WERROR
match COMPILE_TEST.

Signed-off-by: Marco Elver <[email protected]>
Acked-by: Guenter Roeck <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Reviwed-by: Mark Brown <[email protected]>
Reviewed-by: Nathan Chancellor <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
init/Kconfig

index 8cb97f141b709accb77e1bc34cceddf5af89b31b..11f8a845f259da63299a77001991631be81c0eac 100644 (file)
@@ -139,7 +139,7 @@ config COMPILE_TEST
 
 config WERROR
        bool "Compile the kernel with warnings as errors"
-       default y
+       default COMPILE_TEST
        help
          A kernel build should not cause any compiler warnings, and this
          enables the '-Werror' flag to enforce that rule by default.
This page took 0.045722 seconds and 4 git commands to generate.