[clang] 3f4c518 - [clang-repl] Add exhaustive list of libInterpreter dependencies.

Vassil Vassilev via cfe-commits cfe-commits at lists.llvm.org
Thu May 13 00:20:47 PDT 2021


Author: Vassil Vassilev
Date: 2021-05-13T07:18:01Z
New Revision: 3f4c5185926ad2a07a642b8b0b7a4accffeb7e36

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

LOG: [clang-repl] Add exhaustive list of libInterpreter dependencies.

This patch should appease the bots building with -DBUILD_SHARED_LIBS=On,
resolving the regression introduced in 92f9852fc99b.

Added: 
    

Modified: 
    clang/lib/Interpreter/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/lib/Interpreter/CMakeLists.txt b/clang/lib/Interpreter/CMakeLists.txt
index f1d7aa95afd1..e08779945b5f 100644
--- a/clang/lib/Interpreter/CMakeLists.txt
+++ b/clang/lib/Interpreter/CMakeLists.txt
@@ -1,6 +1,7 @@
 set(LLVM_LINK_COMPONENTS
    core
    native
+   Option
    OrcJit
    Support
    Target
@@ -15,9 +16,13 @@ add_clang_library(clangInterpreter
   clangAST
   clangAnalysis
   clangBasic
+  clangDriver
   clangEdit
+  clangFrontend
   clangLex
+  clangParse
   clangSema
+  clangSerialization
   clangCodeGen
   clangFrontendTool
   )


        


More information about the cfe-commits mailing list