diff options
author | Martin Roth <gaumless@gmail.com> | 2022-06-22 18:09:24 -0600 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-07-06 00:33:48 +0000 |
commit | 553787bd32e400dc1cfab04f0ddc80ca5eae4e36 (patch) | |
tree | d66967af3bd807db0b17c7013d1686b647c8a1e2 | |
parent | a6710d01d40236c305aa2f3a764b562c12bf964c (diff) |
.gitignore: Ignore .cache directory & compile_commands.json
To configure the clangd plugin for various editors, The command
'bear -- make' is used to generate the compile_commands.json.
The clangd plugin creates a .cache directory under inside coreboot.
Just ignore both of these.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: Ic844f807ab48597b8aae29bb64ab16d6c8dff217
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65320
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index af8907e39b..0c3237b9e4 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,8 @@ site-local # Development friendly files tags .clang_complete +.cache +compile_commands.json # Cross-compile toolkits xgcc/ |