From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH master] kbuild: fix clangd warning with GCC compile_commands.json
Date: Tue, 7 Jan 2025 13:24:26 +0100 [thread overview]
Message-ID: <20250107122426.3713264-1-a.fatoum@pengutronix.de> (raw)
If barebox is configured to pass -ftrivial-auto-var-init=zero as
argument to GCC, the compile_commands.json will list it prompting clang
to complain:
'-ftrivial-auto-var-init=zero' hasn't been enabled; enable it at your own
peril for benchmarking purpose only with
'-enable-trivial-auto-var-init-zero-knowing-it-will-be-removed-from-clang'
When built with clang, this option is supplied, so we only see this
warning when configuring barebox with GCC, but using clangd via LSP.
Fix this by adding this option unconditionally.
Fixes: f41c4d7c5649 ("Makefile: add LLVM/clang support")
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
.clangd | 1 +
1 file changed, 1 insertion(+)
diff --git a/.clangd b/.clangd
index 4057270b2a83..027fb11d7a11 100644
--- a/.clangd
+++ b/.clangd
@@ -1,2 +1,3 @@
CompileFlags:
Remove: [ -mabi=lp64, -fno-allow-store-data-races]
+ Add: [ -enable-trivial-auto-var-init-zero-knowing-it-will-be-removed-from-clang ]
--
2.39.5
next reply other threads:[~2025-01-07 12:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-07 12:24 Ahmad Fatoum [this message]
2025-01-08 14:32 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250107122426.3713264-1-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox