llvm.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH] Makefile: Fix build with scan-build
@ 2022-01-19 13:51 Amadeusz Sławiński
  2022-01-19 21:19 ` Nathan Chancellor
  0 siblings, 1 reply; 7+ messages in thread
From: Amadeusz Sławiński @ 2022-01-19 13:51 UTC (permalink / raw)
  To: linux-kbuild, Masahiro Yamada, Michal Marek, Nick Desaulniers,
	Nathan Chancellor
  Cc: linux-kernel, llvm, Rafael J . Wysocki, Andy Shevchenko,
	Cezary Rojewski, Amadeusz Sławiński

When building kernel with scan-build for analysis:
$ scan-build make defconfig
$ scan-build make menuconfig # disable RETPOLINE
$ scan-build make -j16 bindeb-pkg
since commit 7d73c3e9c514 ("Makefile: remove stale cc-option checks")
it fails with:
  CC      scripts/mod/empty.o
could not find clang line
make[4]: *** [scripts/Makefile.build:287: scripts/mod/empty.o] Error 1

Seems like changes to how -fconserve-stack support was detected broke
build with scan-build. Revert part of mentioned commit which changed
that.

Fixes: 7d73c3e9c514 ("Makefile: remove stale cc-option checks")
CC: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com>
---
 Makefile | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 765115c99655..1174ccd182f5 100644
--- a/Makefile
+++ b/Makefile
@@ -991,9 +991,7 @@ KBUILD_CFLAGS	+= -fno-strict-overflow
 KBUILD_CFLAGS  += -fno-stack-check
 
 # conserve stack if available
-ifdef CONFIG_CC_IS_GCC
-KBUILD_CFLAGS   += -fconserve-stack
-endif
+KBUILD_CFLAGS   += $(call cc-option,-fconserve-stack)
 
 # Prohibit date/time macros, which would make the build non-deterministic
 KBUILD_CFLAGS   += -Werror=date-time
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-01-23  2:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-19 13:51 [PATCH] Makefile: Fix build with scan-build Amadeusz Sławiński
2022-01-19 21:19 ` Nathan Chancellor
2022-01-19 23:08   ` Nathan Chancellor
2022-01-21 11:20     ` Amadeusz Sławiński
2022-01-21 16:47       ` Nathan Chancellor
2022-01-22 11:53         ` Masahiro Yamada
2022-01-23  2:41           ` Nathan Chancellor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).