We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
1 parent 4467636 commit d8f48f7Copy full SHA for d8f48f7
ls/lsp_client_clangd.go
@@ -51,6 +51,8 @@ func newClangdLSPClient(logger jsonrpc.FunctionLogger, dataFolder *paths.Path, l
51
args := []string{
52
ls.config.ClangdPath.String(),
53
"-log=verbose",
54
+ "-j", "1", // Limit parallel build jobs to 1
55
+ "--pch-storage=memory",
56
fmt.Sprintf(`--compile-commands-dir=%s`, ls.buildPath),
57
}
58
if dataFolder != nil {
0 commit comments