summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-01-19 23:01:38 +0000
committerChris Bieneman <beanz@apple.com>2016-01-19 23:01:38 +0000
commitfe4a7b3ccdf8efd92b77dad6753f2947634bee15 (patch)
treee18cb9403d42ff939e9c0a4b880efe08ee85f11e
parent6c8848abe6931015306f53714deffb7fa7c1fbe8 (diff)
downloadbcm5719-llvm-fe4a7b3ccdf8efd92b77dad6753f2947634bee15.tar.gz
bcm5719-llvm-fe4a7b3ccdf8efd92b77dad6753f2947634bee15.zip
[CMake] Don't apply Export set to clang tools
I can't apply export to tools without getting some strange CMake spew. The behavior here is a bit unexpected. CMake is complaining about static link dependencies not being in the same export set, which shouldn't matter. In the short term it is easier to just remove the export set (which was just added in r258209) while I sort this out. llvm-svn: 258214
-rw-r--r--clang/CMakeLists.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/CMakeLists.txt b/clang/CMakeLists.txt
index 272c80eaf39..ca3b51fddd4 100644
--- a/clang/CMakeLists.txt
+++ b/clang/CMakeLists.txt
@@ -447,7 +447,6 @@ endmacro(add_clang_executable)
macro(add_clang_tool name)
add_clang_executable(${name} ${ARGN})
install(TARGETS ${name}
- EXPORT ClangTargets
RUNTIME DESTINATION bin
COMPONENT ${name})
OpenPOWER on IntegriCloud