Author: Sunho Kim
Date: 2022-07-30T08:00:15+09:00
New Revision: 32f59b34b663c48c217047d4963ad3d1a2378c23

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

LOG: [clang-repl] Add missing link component.

OrcJIT was missing in LLVM_LINK_COMPONENTS.

Added: 
    

Modified: 
    clang/unittests/Interpreter/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/unittests/Interpreter/CMakeLists.txt 
b/clang/unittests/Interpreter/CMakeLists.txt
index 03a4ca4a048b..a69ae025b350 100644
--- a/clang/unittests/Interpreter/CMakeLists.txt
+++ b/clang/unittests/Interpreter/CMakeLists.txt
@@ -1,6 +1,8 @@
 set(LLVM_LINK_COMPONENTS
   ${LLVM_TARGETS_TO_BUILD}
   Core
+  OrcJIT
+  Support
   )
 
 add_clang_unittest(ClangReplInterpreterTests


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to