[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250827-master-v1-1-19f9f367219c@google.com>
Date: Wed, 27 Aug 2025 08:59:43 +0000
From: Brendan Jackman <jackmanb@...gle.com>
To: Nick Desaulniers <nick.desaulniers+lkml@...il.com>, Nathan Chancellor <nathan@...nel.org>,
Bill Wendling <morbo@...gle.com>
Cc: linux-kernel@...r.kernel.org, Justin Stitt <justinstitt@...gle.com>,
llvm@...ts.linux.dev, Brendan Jackman <jackmanb@...gle.com>
Subject: [PATCH] .gitignore: ignore temporary files from 'bear'
Bear [0] is a tool for generating compile_commands.json. For Kbuild,
Bear is not useful, since Kbuild already generates the necessary info
and that can be converted to compile_commands.json by
gen_compile_commads.py.
However, for code in tools/, it's handy. For example, this command
updates compile_commands.json so that clangd code navigation will also
work for the VMA unit tests:
bear --append -- make -C tools/testing/vma -j
Bear generates some temporary files. These are usually deleted again
but having them show up ephemerally confuses tools that trigger
recompilation on source code changes. Ignore them in Git so that these
tools can tell they aren't source code.
[0]: https://github.com/rizsotto/Bear
Signed-off-by: Brendan Jackman <jackmanb@...gle.com>
---
.gitignore | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.gitignore b/.gitignore
index 929054df5212d68a32a1f5ee2b267389fcd1c8db..b07c8c8383bd791e903ce985c14c231cb6928411 100644
--- a/.gitignore
+++ b/.gitignore
@@ -53,6 +53,7 @@
*.tar
*.xz
*.zst
+*.tmp
Module.symvers
dtbs-list
modules.order
@@ -177,6 +178,9 @@ x509.genkey
# Clang's compilation database file
/compile_commands.json
+# Temporary files created by 'bear', a tool used for generating
+# compile_commands.json for non-Kbuild code.
+*.events.json
# Documentation toolchain
sphinx_*/
---
base-commit: fab1beda7597fac1cecc01707d55eadb6bbe773c
change-id: 20250827-master-23458abb102d
Best regards,
--
Brendan Jackman <jackmanb@...gle.com>
Powered by blists - more mailing lists