[PATCH] D135245: [clang][Tooling] Move STL recognizer to its own library
Kadir Cetinkaya via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 6 01:09:27 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd1f13c54f172: [clang][Tooling] Move STL recognizer to its own library (authored by kadircet).
Changed prior to commit:
https://reviews.llvm.org/D135245?vs=465671&id=465676#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D135245/new/
https://reviews.llvm.org/D135245
Files:
clang-tools-extra/clangd/CMakeLists.txt
clang/lib/Tooling/Inclusions/CMakeLists.txt
clang/lib/Tooling/Inclusions/StandardLibrary.cpp
clang/lib/Tooling/Inclusions/Stdlib/CMakeLists.txt
clang/lib/Tooling/Inclusions/Stdlib/StandardLibrary.cpp
clang/unittests/Tooling/CMakeLists.txt
Index: clang/unittests/Tooling/CMakeLists.txt
===================================================================
--- clang/unittests/Tooling/CMakeLists.txt
+++ clang/unittests/Tooling/CMakeLists.txt
@@ -81,6 +81,7 @@
clangTooling
clangToolingCore
clangToolingInclusions
+ clangToolingInclusionsStdlib
clangToolingRefactoring
clangTransformer
)
Index: clang/lib/Tooling/Inclusions/Stdlib/CMakeLists.txt
===================================================================
--- /dev/null
+++ clang/lib/Tooling/Inclusions/Stdlib/CMakeLists.txt
@@ -0,0 +1,6 @@
+add_clang_library(clangToolingInclusionsStdlib
+ StandardLibrary.cpp
+
+ LINK_LIBS
+ clangAST
+ )
Index: clang/lib/Tooling/Inclusions/CMakeLists.txt
===================================================================
--- clang/lib/Tooling/Inclusions/CMakeLists.txt
+++ clang/lib/Tooling/Inclusions/CMakeLists.txt
@@ -3,12 +3,12 @@
add_clang_library(clangToolingInclusions
HeaderIncludes.cpp
IncludeStyle.cpp
- StandardLibrary.cpp
LINK_LIBS
- clangAST
clangBasic
clangLex
clangRewrite
clangToolingCore
)
+
+ add_subdirectory(Stdlib)
Index: clang-tools-extra/clangd/CMakeLists.txt
===================================================================
--- clang-tools-extra/clangd/CMakeLists.txt
+++ clang-tools-extra/clangd/CMakeLists.txt
@@ -160,6 +160,7 @@
clangTooling
clangToolingCore
clangToolingInclusions
+ clangToolingInclusionsStdlib
clangToolingSyntax
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135245.465676.patch
Type: text/x-patch
Size: 1488 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221006/07600eb5/attachment.bin>
More information about the cfe-commits
mailing list