[clang] 32f59b3 - [clang-repl] Add missing link component.

Sunho Kim via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 29 16:00:24 PDT 2022


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


        


More information about the cfe-commits mailing list