How would you get clangd to work with bits/stdc++.h?
Hello
My use case is writing competitive programming solutions in c++. i use neovim with the clangd lsp server. but i just cant get it to work with gcc header files, `bits/stdc++.h` in my case.
i have tried:
```
CompileFlags:
Add:
- -std=gnu++17
- -I/opt/homebrew/Cellar/gcc/16.1.0/include/c++/16
- -I/opt/homebrew/Cellar/gcc/16.1.0/include/c++/16/aarch64-apple-darwin25
```
it just doesn't work. it starts giving me duplicate definition errors once i add these compileflags.