Is there a feasible way to run Clang's various code-checking tools (like clang-tidy and include-what-you-use) together with compilation, so that the source code is only parsed and processed once (single-pass)?
I'm doing this to help compilation performance, since parsing C++ is quite a nontrivial and expensive process.