diff options
author | David Goulet <dgoulet@torproject.org> | 2020-12-16 10:01:15 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2021-01-21 16:06:31 -0500 |
commit | 8500700aa45722595938ef59935e7efde2b1e9e3 (patch) | |
tree | 5799a91583de6b7ad4a171c4b2d1159bc65a3466 /.gitignore | |
parent | faf7b550e740642e060518adc6a8624b036ed8e2 (diff) | |
download | tor-8500700aa45722595938ef59935e7efde2b1e9e3.tar.gz tor-8500700aa45722595938ef59935e7efde2b1e9e3.zip |
build: Add "make lsp" command
Generates the compile_commands.json file using the "bear" application so the
ccls server can be more efficient with our code base.
Closes #40227
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index b7f72617a8..cb49c098cd 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,8 @@ uptime-*.json # Core files core core.* +# ccls file that can be per directory. +*.ccls # / /Makefile @@ -76,6 +78,7 @@ core.* /Tor*Bundle.dmg /tor-*-win32.exe /warning_flags +/compile_commands.json /coverage_html/ /callgraph/ |