You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a json compilation database format that c/c++ tools like clangd (lsp for c/c++, like rust-analyzer for rust) can use to understand c/c++ projects without knowing about the build system. Some build systems like cmake have first class support for it. It would be great to support an option for emitting it inside build.rs. There is a tool called bear that can proxy the calls to the compiler and emit that json but updating at each build without running a separate tool is even better.
The text was updated successfully, but these errors were encountered:
There is a json compilation database format that c/c++ tools like clangd (lsp for c/c++, like rust-analyzer for rust) can use to understand c/c++ projects without knowing about the build system. Some build systems like
cmake
have first class support for it. It would be great to support an option for emitting it insidebuild.rs
. There is a tool calledbear
that can proxy the calls to the compiler and emit that json but updating at each build without running a separate tool is even better.The text was updated successfully, but these errors were encountered: