Would it be possible to add detection of system include paths when using compile_flags.txt to configure clangd? The system include paths could be detected if: compile_flags.txt is used to configure clangd the compiler is given in the CompileFlags section in .clangd configuration file: Compiler...
4 changes: 4 additions & 0 deletions 4 .gitignore Original file line numberDiff line numberDiff line change @@ -64,3 +64,7 @@ results/ # mypy artifacts .mypy_cache/ # Clangd compile flags (language server) compile_commands.json compile_flags.txt 0 comments on commit 8c4cc54 Please...
Compiler: clang++ # Change argv[0] of compile flags to `clang++` ``` clangd emulates how clang would interpret a file. @@ -138,6 +139,14 @@ Valid values are: - Ancestors: search all parent directories (the default) - None: do not use a compilation database, just default flags....