-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Open
Labels
Description
In #151467, found out that run-clang-tidy
and clang-tidy-diff
scripts are located in different folders in windows.
We should place both scripts in bin
dir IMO.
Relevant code:
llvm-project/clang-tools-extra/clang-tidy/tool/CMakeLists.txt
Lines 65 to 71 in 740758a
install(PROGRAMS clang-tidy-diff.py | |
DESTINATION "${CMAKE_INSTALL_DATADIR}/clang" | |
COMPONENT clang-tidy) | |
install(PROGRAMS run-clang-tidy.py | |
DESTINATION "${CMAKE_INSTALL_BINDIR}" | |
COMPONENT clang-tidy | |
RENAME run-clang-tidy) |
Issue somewhat related to #90772
SimplyDanny