]> www.infradead.org Git - users/hch/misc.git/commitdiff
kbuild: uapi: fail header test on compiler warnings
authorThomas Weißschuh <thomas.weissschuh@linutronix.de>
Wed, 13 Aug 2025 06:16:57 +0000 (08:16 +0200)
committerNathan Chancellor <nathan@kernel.org>
Wed, 13 Aug 2025 21:00:34 +0000 (14:00 -0700)
Compiler warnings also indicate issues with the headers.

Make sure they don't go unnoticed.

Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Reviewed-by: Nicolas Schier <nsc@kernel.org>
Link: https://lore.kernel.org/r/20250813-kbuild-hdrtest-fixes-v2-2-8a7921ca3a03@linutronix.de
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
usr/include/Makefile

index c7f164952b33acf6c7b8eb7ce91cd192bfc39ad2..61a7dd4fc05f004d785c64c0019ad846c84719d5 100644 (file)
@@ -80,7 +80,7 @@ always-y := $(patsubst $(obj)/%.h,%.hdrtest, $(shell find $(obj) -name '*.h' 2>/
 # Include the header twice to detect missing include guard.
 quiet_cmd_hdrtest = HDRTEST $<
       cmd_hdrtest = \
-               $(CC) $(c_flags) -fsyntax-only -x c /dev/null \
+               $(CC) $(c_flags) -fsyntax-only -Werror -x c /dev/null \
                        $(if $(filter-out $(no-header-test), $*.h), -include $< -include $<); \
                $(PERL) $(src)/headers_check.pl $(obj) $<; \
                touch $@