Răsfoiți Sursa

[CMake] Update libdeps.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212920 91177308-0d34-0410-b5e6-96231b3b80d8
NAKAMURA Takumi 11 ani în urmă
părinte
comite
a84c1fb652

+ 1 - 0
examples/BrainF/CMakeLists.txt

@@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS
   Core
   ExecutionEngine
   JIT
+  MC
   Support
   nativecodegen
   )

+ 1 - 0
examples/Fibonacci/CMakeLists.txt

@@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS
   ExecutionEngine
   Interpreter
   JIT
+  MC
   Support
   nativecodegen
   )

+ 1 - 0
examples/HowToUseJIT/CMakeLists.txt

@@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS
   ExecutionEngine
   Interpreter
   JIT
+  MC
   Support
   nativecodegen
   )

+ 1 - 0
examples/Kaleidoscope/Chapter4/CMakeLists.txt

@@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
   ExecutionEngine
   InstCombine
   JIT
+  MC
   ScalarOpts
   Support
   nativecodegen

+ 1 - 0
examples/Kaleidoscope/Chapter5/CMakeLists.txt

@@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
   ExecutionEngine
   InstCombine
   JIT
+  MC
   ScalarOpts
   Support
   nativecodegen

+ 1 - 0
examples/Kaleidoscope/Chapter6/CMakeLists.txt

@@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
   ExecutionEngine
   InstCombine
   JIT
+  MC
   ScalarOpts
   Support
   nativecodegen

+ 1 - 0
examples/Kaleidoscope/Chapter7/CMakeLists.txt

@@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
   ExecutionEngine
   InstCombine
   JIT
+  MC
   ScalarOpts
   Support
   TransformUtils

+ 2 - 0
tools/lli/CMakeLists.txt

@@ -8,7 +8,9 @@ set(LLVM_LINK_COMPONENTS
   Instrumentation
   Interpreter
   JIT
+  MC
   MCJIT
+  Object
   SelectionDAG
   Support
   native

+ 1 - 0
tools/llvm-ar/CMakeLists.txt

@@ -1,5 +1,6 @@
 set(LLVM_LINK_COMPONENTS
   ${LLVM_TARGETS_TO_BUILD}
+  Core
   Object
   Support
   )

+ 1 - 0
tools/llvm-nm/CMakeLists.txt

@@ -1,5 +1,6 @@
 set(LLVM_LINK_COMPONENTS
   ${LLVM_TARGETS_TO_BUILD}
+  Core
   Object
   Support
   )

+ 1 - 0
tools/yaml2obj/CMakeLists.txt

@@ -1,4 +1,5 @@
 set(LLVM_LINK_COMPONENTS
+  MC
   Object
   Support
   )

+ 1 - 0
unittests/ExecutionEngine/CMakeLists.txt

@@ -2,6 +2,7 @@ set(LLVM_LINK_COMPONENTS
   Core
   ExecutionEngine
   Interpreter
+  MC
   Support
   )
 

+ 1 - 0
unittests/ExecutionEngine/JIT/CMakeLists.txt

@@ -5,6 +5,7 @@ set(LLVM_LINK_COMPONENTS
   Core
   ExecutionEngine
   JIT
+  MC
   Support
   nativecodegen
   )

+ 1 - 0
unittests/ExecutionEngine/MCJIT/CMakeLists.txt

@@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
   ExecutionEngine
   IPO
   JIT
+  MC
   MCJIT
   ScalarOpts
   Support

+ 2 - 0
unittests/MC/CMakeLists.txt

@@ -1,5 +1,7 @@
 set(LLVM_LINK_COMPONENTS
+  MC
   MCAnalysis
+  Support
   )
 
 add_llvm_unittest(MCTests