[PATCH] D43429: [clangd] Add missing library (clangLex) in a few places
Marc-Andre Laperle via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 16 20:59:30 PST 2018
malaperle created this revision.
Herald added subscribers: cfe-commits, ioeric, jkorous-apple, ilya-biryukov, mgorny, klimek.
Fixes undefined reference to 'clang::Preprocessor::addCommentHandler'
when building with -DBUILD_SHARED_LIBS.
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle at ericsson.com>
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D43429
Files:
clangd/global-symbol-builder/CMakeLists.txt
unittests/clangd/CMakeLists.txt
Index: unittests/clangd/CMakeLists.txt
===================================================================
--- unittests/clangd/CMakeLists.txt
+++ unittests/clangd/CMakeLists.txt
@@ -38,6 +38,7 @@
clangFormat
clangFrontend
clangIndex
+ clangLex
clangSema
clangTooling
clangToolingCore
Index: clangd/global-symbol-builder/CMakeLists.txt
===================================================================
--- clangd/global-symbol-builder/CMakeLists.txt
+++ clangd/global-symbol-builder/CMakeLists.txt
@@ -15,5 +15,6 @@
clangDaemon
clangBasic
clangFrontend
+ clangLex
clangTooling
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D43429.134787.patch
Type: text/x-patch
Size: 614 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180217/5b1c7dc1/attachment.bin>
More information about the cfe-commits
mailing list