[clang] e3ba831 - [clang] Fix the tooling build after D119130

Kirill Bobyrev via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 9 02:53:06 PST 2022


Author: Kirill Bobyrev
Date: 2022-02-09T11:52:03+01:00
New Revision: e3ba831937189ec61e28ced0b0bfc1e41a3510f8

URL: https://github.com/llvm/llvm-project/commit/e3ba831937189ec61e28ced0b0bfc1e41a3510f8
DIFF: https://github.com/llvm/llvm-project/commit/e3ba831937189ec61e28ced0b0bfc1e41a3510f8.diff

LOG: [clang] Fix the tooling build after D119130

New StandardLibrary.cpp depends on Clang AST, add the dependency to
CMakeLists.txt

Broken builbot: https://lab.llvm.org/buildbot/#/builders/57/builds/14892

Added: 
    

Modified: 
    clang/lib/Tooling/Inclusions/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/lib/Tooling/Inclusions/CMakeLists.txt b/clang/lib/Tooling/Inclusions/CMakeLists.txt
index ee884a0b74126..fba003b4e0de5 100644
--- a/clang/lib/Tooling/Inclusions/CMakeLists.txt
+++ b/clang/lib/Tooling/Inclusions/CMakeLists.txt
@@ -6,6 +6,7 @@ add_clang_library(clangToolingInclusions
   StandardLibrary.cpp
 
   LINK_LIBS
+  clangAST
   clangBasic
   clangLex
   clangRewrite


        


More information about the cfe-commits mailing list