[clang-tools-extra] r269240 - [clang-tidy] Add missing dependency of libtooling to misc module
Etienne Bergeron via cfe-commits
cfe-commits at lists.llvm.org
Wed May 11 14:32:29 PDT 2016
Author: etienneb
Date: Wed May 11 16:32:29 2016
New Revision: 269240
URL: http://llvm.org/viewvc/llvm-project?rev=269240&view=rev
Log:
[clang-tidy] Add missing dependency of libtooling to misc module
Summary:
The new API for fixit is in libtooling and the library misc in clang-tidy
didn't had the appropriate dependency.
This commit was breaking some build bots:
http://reviews.llvm.org/D19547
This commit tried (but failed) to fix it:
http://reviews.llvm.org/D20180
To repro, you can make a build with these flags:
```
cmake -DBUILD_SHARED_LIBS=ON
```
Thanks rnk@ for helping figuring out.
Reviewers: alexfh, rnk
Subscribers: cfe-commits
Differential Revision: http://reviews.llvm.org/D20182
Modified:
clang-tools-extra/trunk/clang-tidy/misc/CMakeLists.txt
Modified: clang-tools-extra/trunk/clang-tidy/misc/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/misc/CMakeLists.txt?rev=269240&r1=269239&r2=269240&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/misc/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/clang-tidy/misc/CMakeLists.txt Wed May 11 16:32:29 2016
@@ -50,4 +50,5 @@ add_clang_library(clangTidyMiscModule
clangLex
clangTidy
clangTidyUtils
+ clangTooling
)
More information about the cfe-commits
mailing list