Skip to content
Snippets Groups Projects
Commit 0bc35e9e authored by David Blaikie's avatar David Blaikie
Browse files

Include clang-check as part of the clang installation.

This also tidies up a couple of other tools we were (partially) installing:
* c-index-test was being installed but shouldn't be (it's just a clang-dev tool)
* diagtool was being installed in cmake but not make (& shouldn't be installed in either)

Review by Manuel Klimek, Doug Gregor, and Chandler Carruth.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161073 91177308-0d34-0410-b5e6-96231b3b80d8
parent 98499013
No related branches found
No related tags found
No related merge requests found
...@@ -14,5 +14,3 @@ target_link_libraries(c-index-test ...@@ -14,5 +14,3 @@ target_link_libraries(c-index-test
set_target_properties(c-index-test set_target_properties(c-index-test
PROPERTIES PROPERTIES
LINKER_LANGUAGE CXX) LINKER_LANGUAGE CXX)
install(TARGETS c-index-test RUNTIME DESTINATION bin)
...@@ -17,6 +17,9 @@ INTERNAL_TOOL = 1 ...@@ -17,6 +17,9 @@ INTERNAL_TOOL = 1
# No plugins, optimize startup time. # No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1 TOOL_NO_EXPORTS = 1
# Don't install this. It is used for tests.
NO_INSTALL = 1
LINK_COMPONENTS := support mc LINK_COMPONENTS := support mc
USEDLIBS = clang.a clangFrontend.a clangDriver.a \ USEDLIBS = clang.a clangFrontend.a clangDriver.a \
clangTooling.a \ clangTooling.a \
......
...@@ -6,3 +6,6 @@ target_link_libraries(clang-check ...@@ -6,3 +6,6 @@ target_link_libraries(clang-check
clangTooling clangTooling
clangBasic clangBasic
) )
install(TARGETS clang-check
RUNTIME DESTINATION bin)
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
CLANG_LEVEL := ../.. CLANG_LEVEL := ../..
TOOLNAME = clang-check TOOLNAME = clang-check
NO_INSTALL = 1
# No plugins, optimize startup time. # No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1 TOOL_NO_EXPORTS = 1
......
...@@ -27,6 +27,3 @@ if(UNIX) ...@@ -27,6 +27,3 @@ if(UNIX)
else() else()
set(CLANGXX_LINK_OR_COPY copy) set(CLANGXX_LINK_OR_COPY copy)
endif() endif()
install(TARGETS diagtool
RUNTIME DESTINATION bin)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment