[clang-tools-extra] r213064 - Prune Redundant libdeps in CMake's target_link_libraries and LLVMBuild.txt.

NAKAMURA Takumi geek4civic at gmail.com
Tue Jul 15 04:37:04 PDT 2014


Author: chapuni
Date: Tue Jul 15 06:37:03 2014
New Revision: 213064

URL: http://llvm.org/viewvc/llvm-project?rev=213064&view=rev
Log:
Prune Redundant libdeps in CMake's target_link_libraries and LLVMBuild.txt.

I checked this with Release+Asserts on x86_64-mingw32. Please restore partially if this were overkill.

Modified:
    clang-tools-extra/trunk/clang-query/tool/CMakeLists.txt
    clang-tools-extra/trunk/module-map-checker/CMakeLists.txt

Modified: clang-tools-extra/trunk/clang-query/tool/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-query/tool/CMakeLists.txt?rev=213064&r1=213063&r2=213064&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-query/tool/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/clang-query/tool/CMakeLists.txt Tue Jul 15 06:37:03 2014
@@ -6,7 +6,6 @@ target_link_libraries(clang-query
   clangASTMatchers
   clangBasic
   clangDynamicASTMatchers
-  clangFrontend
   clangQuery
   clangTooling
   )

Modified: clang-tools-extra/trunk/module-map-checker/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/module-map-checker/CMakeLists.txt?rev=213064&r1=213063&r2=213064&view=diff
==============================================================================
--- clang-tools-extra/trunk/module-map-checker/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/module-map-checker/CMakeLists.txt Tue Jul 15 06:37:03 2014
@@ -9,9 +9,7 @@ add_clang_executable(module-map-checker
 target_link_libraries(module-map-checker
   clangAST
   clangBasic
-  clangDriver
   clangFrontend
   clangLex
-  clangRewriteFrontend
   clangTooling
   )





More information about the cfe-commits mailing list