vbvictor wrote: > Still, it took almost 5 minutes on my machine and I've debug build of > clang-tidy, and it doesn't make sense for me to keep switching between debug > build and release build just to be able to run this command. I guess, I'll > have to bear the pain of longer time (~5 minutes) though.
You don't have to use built-from-main clang-tidy for analysis. Currenly in CI we use latest release which is clang-tidy-22. You can install it and use for analysis with `--clang-tidy-binary=clang-tidy-22` or create a symlink `clang-tidy-22 -> clang-tidy` https://github.com/llvm/llvm-project/pull/191712 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
