[clang] b2186a6 - [clang-repl] Add final set of missing library dependencies.

Vassil Vassilev via cfe-commits cfe-commits at lists.llvm.org
Thu May 13 01:07:11 PDT 2021


Author: Vassil Vassilev
Date: 2021-05-13T08:06:58Z
New Revision: b2186a69c169c7e39c2a769ba859f656aa4cef1b

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

LOG: [clang-repl] Add final set of missing library dependencies.

Added: 
    

Modified: 
    clang/tools/clang-repl/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/tools/clang-repl/CMakeLists.txt b/clang/tools/clang-repl/CMakeLists.txt
index 773f46d64af4..106af3f1939b 100644
--- a/clang/tools/clang-repl/CMakeLists.txt
+++ b/clang/tools/clang-repl/CMakeLists.txt
@@ -1,6 +1,8 @@
 set( LLVM_LINK_COMPONENTS
   ${LLVM_TARGETS_TO_BUILD}
+  Core
   Option
+  OrcJIT
   Support
   )
 
@@ -10,6 +12,7 @@ add_clang_executable(clang-repl
   )
 
 target_link_libraries(clang-repl PUBLIC
+  clangBasic
   clangInterpreter
   clangTooling
   LLVMLineEditor


        


More information about the cfe-commits mailing list