From: Toru Komatsu Date: Wed, 24 Jul 2019 00:22:33 +0000 (+0900) Subject: .gitignore: Add compilation database file X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=26c4c71bcd9a9f2baf8334995b31f718854f7f42;p=linux.git .gitignore: Add compilation database file This file is used by clangd to use language server protocol. It can be generated at each compile using scripts/gen_compile_commands.py. Therefore it is different depending on the environment and should be ignored. Signed-off-by: Toru Komatsu Reviewed-by: Nick Desaulniers Signed-off-by: Masahiro Yamada --- diff --git a/.gitignore b/.gitignore index 8f5422cba6e2b..2030c7a4d2f8c 100644 --- a/.gitignore +++ b/.gitignore @@ -142,3 +142,6 @@ x509.genkey # Kdevelop4 *.kdev4 + +# Clang's compilation database file +/compile_commands.json