stackb / bazel-stack-vscode-cc

C/C++ Support For Bazel Stack VSCode Extension
Apache License 2.0
31 stars 7 forks source link

Do not add duplicate json files to compilation db #16

Open AlexK-BD opened 1 year ago

AlexK-BD commented 1 year ago

The list of temporary compile command json files generated on build events can have many duplicates. This PR deduplicates that list before building up the compilation db.

This can lead to massive reductions in size (100x in my case). The raw list was something like 500k files, with only 3600 of them being unique. The resulting compile_commands.json is substantially smaller -- with duplicates, I've seen it as large as 11GB for my configuration; with this change, it is 166MB

clangd doesn't cope well with a large and heavily duplicated json file, and tends to run out of memory.