[PATCH] D20182: [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:24:14 PDT 2016
etienneb created this revision.
etienneb added reviewers: alexfh, rnk.
etienneb added a subscriber: cfe-commits.
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.
http://reviews.llvm.org/D20182
Files:
clang-tidy/misc/CMakeLists.txt
Index: clang-tidy/misc/CMakeLists.txt
===================================================================
--- clang-tidy/misc/CMakeLists.txt
+++ clang-tidy/misc/CMakeLists.txt
@@ -50,4 +50,5 @@
clangLex
clangTidy
clangTidyUtils
+ clangTooling
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D20182.56963.patch
Type: text/x-patch
Size: 258 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160511/cb84dd75/attachment.bin>
More information about the cfe-commits
mailing list