Skip to content

Drop linking libraries from custom ClangTidy check

Guilherme Amadio requested to merge staticanalysis into master

This is a shared object that gets loaded by clang-tidy, so it doesn't need to be linked against clang libraries. In clang 10 and above libraries may be merged into a single libclang.so as well, so in this case the current settings failed to build the plugin as well, because it cannot find the split libraries.

Merge request reports