[CMake] Update LLVM_LINK_COMPONENTS for each CMakeLists.txt.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 10 Dec 2013 11:13:32 +0000 (11:13 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 10 Dec 2013 11:13:32 +0000 (11:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196908 91177308-0d34-0410-b5e6-96231b3b80d8

48 files changed:
examples/BrainF/CMakeLists.txt
examples/ExceptionDemo/CMakeLists.txt
examples/Fibonacci/CMakeLists.txt
examples/HowToUseJIT/CMakeLists.txt
examples/Kaleidoscope/Chapter3/CMakeLists.txt
examples/Kaleidoscope/Chapter4/CMakeLists.txt
examples/Kaleidoscope/Chapter5/CMakeLists.txt
examples/Kaleidoscope/Chapter6/CMakeLists.txt
examples/Kaleidoscope/Chapter7/CMakeLists.txt
examples/ModuleMaker/CMakeLists.txt
examples/ParallelJIT/CMakeLists.txt
tools/bugpoint/CMakeLists.txt
tools/llc/CMakeLists.txt
tools/lli/CMakeLists.txt
tools/llvm-ar/CMakeLists.txt
tools/llvm-as/CMakeLists.txt
tools/llvm-bcanalyzer/CMakeLists.txt
tools/llvm-c-test/CMakeLists.txt
tools/llvm-diff/CMakeLists.txt
tools/llvm-dis/CMakeLists.txt
tools/llvm-dwarfdump/CMakeLists.txt
tools/llvm-extract/CMakeLists.txt
tools/llvm-link/CMakeLists.txt
tools/llvm-lto/CMakeLists.txt
tools/llvm-mc/CMakeLists.txt
tools/llvm-nm/CMakeLists.txt
tools/llvm-objdump/CMakeLists.txt
tools/llvm-readobj/CMakeLists.txt
tools/llvm-rtdyld/CMakeLists.txt
tools/llvm-size/CMakeLists.txt
tools/llvm-stress/CMakeLists.txt
tools/llvm-symbolizer/CMakeLists.txt
tools/lto/CMakeLists.txt
tools/macho-dump/CMakeLists.txt
tools/obj2yaml/CMakeLists.txt
tools/opt/CMakeLists.txt
tools/yaml2obj/CMakeLists.txt
unittests/Analysis/CMakeLists.txt
unittests/Bitcode/CMakeLists.txt
unittests/CodeGen/CMakeLists.txt
unittests/DebugInfo/CMakeLists.txt
unittests/ExecutionEngine/CMakeLists.txt
unittests/ExecutionEngine/JIT/CMakeLists.txt
unittests/ExecutionEngine/MCJIT/CMakeLists.txt
unittests/IR/CMakeLists.txt
unittests/Object/CMakeLists.txt
unittests/Transforms/DebugIR/CMakeLists.txt
unittests/Transforms/Utils/CMakeLists.txt

index 7bec105cdc8a677d4cce4bc78d4ae52be8a7f4ba..025d093364053cb580c99a7ee60d0d621799fddd 100644 (file)
@@ -1,4 +1,11 @@
-set(LLVM_LINK_COMPONENTS jit bitwriter nativecodegen interpreter)
+set(LLVM_LINK_COMPONENTS
+  BitWriter
+  Core
+  ExecutionEngine
+  JIT
+  Support
+  nativecodegen
+  )
 
 add_llvm_example(BrainF
   BrainF.cpp
index ea818faf3b338b83edb50e1d405a7c1ef124bd91..5324acd21eabd4a0668679db8d67399327beab0e 100644 (file)
@@ -1,4 +1,11 @@
-set(LLVM_LINK_COMPONENTS jit mcjit nativecodegen)
+set(LLVM_LINK_COMPONENTS
+  Core
+  ExecutionEngine
+  MCJIT
+  Support
+  nativecodegen
+  )
+
 set(LLVM_REQUIRES_EH 1)
 
 add_llvm_example(ExceptionDemo
index 693761241fc18e18d0a6fd4dca3d1721e360bac3..724a0f6715d3dda522cf15e406014ca2d9c966e3 100644 (file)
@@ -1,4 +1,11 @@
-set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen)
+set(LLVM_LINK_COMPONENTS
+  Core
+  ExecutionEngine
+  Interpreter
+  JIT
+  Support
+  nativecodegen
+  )
 
 add_llvm_example(Fibonacci
   fibonacci.cpp
index 428b53ffb9be92bddb4063881014d6e2de2eab61..88aed026bf6f01633220988f0772347c115d789b 100644 (file)
@@ -1,4 +1,11 @@
-set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen)
+set(LLVM_LINK_COMPONENTS
+  Core
+  ExecutionEngine
+  Interpreter
+  JIT
+  Support
+  nativecodegen
+  )
 
 add_llvm_example(HowToUseJIT
   HowToUseJIT.cpp
index 1af8db00a172284efd65b19c77163b8ed71dfc9d..a98d7df1049cc98750ad08ddaef25ae5582363f8 100644 (file)
@@ -1,4 +1,7 @@
-set(LLVM_LINK_COMPONENTS core)
+set(LLVM_LINK_COMPONENTS
+  Core
+  Support
+  )
 
 add_llvm_example(Kaleidoscope-Ch3
   toy.cpp
index 0d1ac533f02d49a19758fadc0687da4630d8cabf..72a9f0512cd2647b3733398cbd2f3f04d025a8a7 100644 (file)
@@ -1,4 +1,13 @@
-set(LLVM_LINK_COMPONENTS core jit interpreter native)
+set(LLVM_LINK_COMPONENTS
+  Analysis
+  Core
+  ExecutionEngine
+  InstCombine
+  JIT
+  ScalarOpts
+  Support
+  nativecodegen
+  )
 
 add_llvm_example(Kaleidoscope-Ch4
   toy.cpp
index 2d75ad35923fa50f7063ee75161f5cb4ec5a4a67..c7d0276194cf7ff9d777e091b40b6395935122d1 100644 (file)
@@ -1,4 +1,13 @@
-set(LLVM_LINK_COMPONENTS core jit interpreter native)
+set(LLVM_LINK_COMPONENTS
+  Analysis
+  Core
+  ExecutionEngine
+  InstCombine
+  JIT
+  ScalarOpts
+  Support
+  nativecodegen
+  )
 
 add_llvm_example(Kaleidoscope-Ch5
   toy.cpp
index 2e15a5f7dfc60b10639fc26ef71be543c3fd53af..669c7eb171b82f14b3fbc7481c9b24c9f9e6063a 100644 (file)
@@ -1,4 +1,13 @@
-set(LLVM_LINK_COMPONENTS core jit interpreter native)
+set(LLVM_LINK_COMPONENTS
+  Analysis
+  Core
+  ExecutionEngine
+  InstCombine
+  JIT
+  ScalarOpts
+  Support
+  nativecodegen
+  )
 
 add_llvm_example(Kaleidoscope-Ch6
   toy.cpp
index da3839843bd008f7ac521dec6889c69d0680b756..0a0c8e7cab58d455e3ac352a7458ef22f677511e 100644 (file)
@@ -1,4 +1,15 @@
-set(LLVM_LINK_COMPONENTS core jit interpreter native)
+set(LLVM_LINK_COMPONENTS
+  Analysis
+  Core
+  ExecutionEngine
+  InstCombine
+  JIT
+  ScalarOpts
+  Support
+  TransformUtils
+  nativecodegen
+  )
+
 set(LLVM_REQUIRES_RTTI 1)
 
 add_llvm_example(Kaleidoscope-Ch7
index 81e911560bdcf2c9c863029d5c265d79dce55590..a73909a13bd48eadeaa9382dddc9c0c3b41002f2 100644 (file)
@@ -1,4 +1,8 @@
-set(LLVM_LINK_COMPONENTS bitwriter)
+set(LLVM_LINK_COMPONENTS
+  BitWriter
+  Core
+  Support
+  )
 
 add_llvm_example(ModuleMaker
   ModuleMaker.cpp
index fbdc6e5fc10b4ecc2516737566bba566e06181b0..8673917f5589d7da3d21818051dbbf166d9bd24e 100644 (file)
@@ -1,4 +1,11 @@
-set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen)
+set(LLVM_LINK_COMPONENTS
+  Core
+  ExecutionEngine
+  Interpreter
+  JIT
+  Support
+  nativecodegen
+  )
 
 add_llvm_example(ParallelJIT
   ParallelJIT.cpp
index 0000d977acf301e5c5215a63eb9b4b8f6c3c7bd8..7e7ad0e94cf000d27e85ecb14439c18feb5c1393 100644 (file)
@@ -1,5 +1,20 @@
-set(LLVM_LINK_COMPONENTS asmparser instrumentation scalaropts ipo
-  linker bitreader bitwriter irreader vectorize objcarcopts)
+set(LLVM_LINK_COMPONENTS
+  Analysis
+  BitWriter
+  Core
+  IPA
+  IPO
+  IRReader
+  InstCombine
+  Instrumentation
+  Linker
+  ObjCARCOpts
+  ScalarOpts
+  Support
+  Target
+  TransformUtils
+  Vectorize
+  )
 
 add_llvm_tool(bugpoint
   BugDriver.cpp
index 97c762b7f6fe240e8249cbb0f82f4766cf1047e3..9a3d411a283d8cc66b34df4a995a982a3e70ec21 100644 (file)
@@ -1,4 +1,15 @@
-set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} bitreader asmparser irreader)
+set(LLVM_LINK_COMPONENTS
+  ${LLVM_TARGETS_TO_BUILD}
+  AsmPrinter
+  CodeGen
+  Core
+  IRReader
+  MC
+  ScalarOpts
+  SelectionDAG
+  Support
+  Target
+  )
 
 add_llvm_tool(llc
   llc.cpp
index 841a0ce42f80d6598154af8819bdbca66df7a00d..731b61a11b4103b6ec185502693907e506a29430 100644 (file)
@@ -1,6 +1,18 @@
 add_subdirectory(ChildTarget)
 
-set(LLVM_LINK_COMPONENTS mcjit jit interpreter nativecodegen bitreader asmparser irreader selectiondag native instrumentation)
+set(LLVM_LINK_COMPONENTS
+  CodeGen
+  Core
+  ExecutionEngine
+  IRReader
+  Instrumentation
+  Interpreter
+  JIT
+  MCJIT
+  SelectionDAG
+  Support
+  native
+  )
 
 if( LLVM_USE_OPROFILE )
   set(LLVM_LINK_COMPONENTS
index f15a1e2a869ba13ef01f6cb9db7dd1a1e3773fcd..857cf2d07133fb24a5247daebf100b9d20b84548 100644 (file)
@@ -1,4 +1,7 @@
-set(LLVM_LINK_COMPONENTS support object bitreader)
+set(LLVM_LINK_COMPONENTS
+  Object
+  Support
+  )
 
 add_llvm_tool(llvm-ar
   llvm-ar.cpp
index d5620e72971b8fb8f162c3357327356e41065384..1b2789a4de41fa2781aaba4517cc257650c9179b 100644 (file)
@@ -1,4 +1,9 @@
-set(LLVM_LINK_COMPONENTS asmparser bitwriter)
+set(LLVM_LINK_COMPONENTS
+  AsmParser
+  BitWriter
+  Core
+  Support
+  )
 
 add_llvm_tool(llvm-as
   llvm-as.cpp
index 0151ea9b4f6568a6b9fadca0d57d2e54d0961577..369f469af85484dd975eb03b95b8d571dfcba03f 100644 (file)
@@ -1,4 +1,7 @@
-set(LLVM_LINK_COMPONENTS bitreader)
+set(LLVM_LINK_COMPONENTS
+  BitReader
+  Support
+  )
 
 add_llvm_tool(llvm-bcanalyzer
   llvm-bcanalyzer.cpp
index 2926d9dd34550f9b3ef7cd115875a7aa0bc5d5d4..13a072ae331c4ef4eb1da847bf600648f22f34d8 100644 (file)
@@ -1,4 +1,11 @@
-set(LLVM_LINK_COMPONENTS all)
+set(LLVM_LINK_COMPONENTS
+  ${LLVM_TARGETS_TO_BUILD}
+  BitReader
+  Core
+  MCDisassembler
+  Object
+  Target
+  )
 
 if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wstrict-prototypes")
index 0df8b9ed79e21d2e600ecac7719000e1bafd6795..4407a86c1519727a5788c0ad15ccae00e704afcd 100644 (file)
@@ -1,4 +1,8 @@
-set(LLVM_LINK_COMPONENTS support asmparser bitreader irreader)
+set(LLVM_LINK_COMPONENTS
+  Core
+  IRReader
+  Support
+  )
 
 add_llvm_tool(llvm-diff
   llvm-diff.cpp
index 9f12ecb66641d1f4fb237c41fb892b0a7633339d..06ac051602ea973bd9800b2b6d367640153c0714 100644 (file)
@@ -1,4 +1,8 @@
-set(LLVM_LINK_COMPONENTS bitreader analysis)
+set(LLVM_LINK_COMPONENTS
+  BitReader
+  Core
+  Support
+  )
 
 add_llvm_tool(llvm-dis
   llvm-dis.cpp
index 05aad3f0b05b3cc94e290f5d1c4e4eb9601ebb52..288b3237010b13961308497c2c9ac74d74815e1c 100644 (file)
@@ -1,6 +1,7 @@
 set(LLVM_LINK_COMPONENTS
   DebugInfo
   Object
+  Support
   )
 
 add_llvm_tool(llvm-dwarfdump
index 3163c4bbbddb28a35f1be91322bec7a25b9a0f1d..c984f01034f8232754a6eee6ba64b77584bb8dd3 100644 (file)
@@ -1,4 +1,10 @@
-set(LLVM_LINK_COMPONENTS asmparser ipo bitreader bitwriter irreader)
+set(LLVM_LINK_COMPONENTS
+  BitWriter
+  Core
+  IPO
+  IRReader
+  Support
+  )
 
 add_llvm_tool(llvm-extract
   llvm-extract.cpp
index 4df53564e182d6e0f314f00fed871c3135153742..d4f5be749046ec12beacd0b103d137e235dfc8f3 100644 (file)
@@ -1,4 +1,10 @@
-set(LLVM_LINK_COMPONENTS linker bitreader bitwriter asmparser irreader)
+set(LLVM_LINK_COMPONENTS
+  BitWriter
+  Core
+  IRReader
+  Linker
+  Support
+  )
 
 add_llvm_tool(llvm-link
   llvm-link.cpp
index 348976cb811fbd5b45d12de5c8e8e328234b0736..485b03d26dac111a32ac294f2a13130c6f124381 100644 (file)
@@ -1,4 +1,10 @@
-set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} lto support)
+set(LLVM_LINK_COMPONENTS
+  ${LLVM_TARGETS_TO_BUILD}
+  Core
+  LTO
+  MC
+  Support
+  )
 
 add_llvm_tool(llvm-lto
   llvm-lto.cpp
index 805caf403a19e668bc9c2bb648a2cf38bc17ce32..6f8e9e5405f9f004bc7af0967dd3aad04340187d 100644 (file)
@@ -1,4 +1,9 @@
-set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} support MC MCParser MCDisassembler)
+set(LLVM_LINK_COMPONENTS
+  ${LLVM_TARGETS_TO_BUILD}
+  MC
+  MCParser
+  Support
+  )
 
 add_llvm_tool(llvm-mc
   llvm-mc.cpp
index b1672ffe0b5fdda6069d12333307d2237eb75b1e..ce758ced44eb5b445b5ae5b9c46eb681c0d753ad 100644 (file)
@@ -1,4 +1,9 @@
-set(LLVM_LINK_COMPONENTS bitreader object)
+set(LLVM_LINK_COMPONENTS
+  BitReader
+  Core
+  Object
+  Support
+  )
 
 add_llvm_tool(llvm-nm
   llvm-nm.cpp
index e983ec92fb81ca81722bb053ce3a54314bd61f20..413cb9bb1f0d4e3216ba8fe0716b5048b89f1f81 100644 (file)
@@ -2,9 +2,8 @@ set(LLVM_LINK_COMPONENTS
   ${LLVM_TARGETS_TO_BUILD}
   DebugInfo
   MC
-  MCParser
-  MCDisassembler
   Object
+  Support
   )
 
 add_llvm_tool(llvm-objdump
index 90997a8ba9cf9b7868df8dc0acd5e69145d89146..e67b970df66b95fe4f1a6fc5e4b1268f54fe8df8 100644 (file)
@@ -1,7 +1,8 @@
 set(LLVM_LINK_COMPONENTS
   ${LLVM_TARGETS_TO_BUILD}
-  bitreader
-  object)
+  Object
+  Support
+  )
 
 add_llvm_tool(llvm-readobj
   llvm-readobj.cpp
index 8d161d366da7d83074c44cda4ebc0d5d3e42dc97..3ad127fd73cb804340a837a9ddbbe14e3f2c890b 100644 (file)
@@ -1,4 +1,9 @@
-set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} support MC object RuntimeDyld JIT debuginfo)
+set(LLVM_LINK_COMPONENTS
+  DebugInfo
+  ExecutionEngine
+  RuntimeDyld
+  Support
+  )
 
 add_llvm_tool(llvm-rtdyld
   llvm-rtdyld.cpp
index 933cc75c3fe920abbb6831e0e913fb76b6afede5..60345739c35a8a7c89d47a3d277637e9f55e3e5a 100644 (file)
@@ -1,4 +1,7 @@
-set(LLVM_LINK_COMPONENTS object)
+set(LLVM_LINK_COMPONENTS
+  Object
+  Support
+  )
 
 add_llvm_tool(llvm-size
   llvm-size.cpp
index ff3a5c42a07bf1a8edc6f33baef8f92bb951c6c5..106ced1419444e5e964aaf64fad9e448d43aee43 100644 (file)
@@ -1,4 +1,8 @@
-set(LLVM_LINK_COMPONENTS bitreader asmparser bitwriter instrumentation scalaropts ipo)
+set(LLVM_LINK_COMPONENTS
+  Core
+  IPA
+  Support
+  )
 
 add_llvm_tool(llvm-stress
   llvm-stress.cpp
index 5967b891f4155c262d2fb1d162592f177d45ea19..9e76248d83d1f1344673ca4e3c485133d1fe839a 100644 (file)
@@ -6,6 +6,7 @@
 set(LLVM_LINK_COMPONENTS
   DebugInfo
   Object
+  Support
   )
 
 add_llvm_tool(llvm-symbolizer
index 957a9f0036c30bafe0e1e894debd3adac5c43daa..da0f6bfc1d951262277efece3940530c3a8180bd 100644 (file)
@@ -1,6 +1,10 @@
 set(LLVM_LINK_COMPONENTS
   ${LLVM_TARGETS_TO_BUILD}
-  ipo scalaropts linker bitreader bitwriter lto mcdisassembler vectorize)
+  Core
+  LTO
+  MC
+  Support
+  )
 
 add_definitions( -DLLVM_VERSION_INFO=\"${PACKAGE_VERSION}\" )
 
index d55e1d5c413910ac8f199eaa129ddf64206525cc..bc2dfbf427c39add931f45cc5860a4ea209c3718 100644 (file)
@@ -1,4 +1,7 @@
-set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} support object)
+set(LLVM_LINK_COMPONENTS
+  Object
+  Support
+  )
 
 add_llvm_tool(macho-dump
   macho-dump.cpp
index 6b39193e47deb88bcf79c87dc5e0bde90af252e4..536c413460f2864065b9fbd7d01e435ec753470e 100644 (file)
@@ -1,4 +1,7 @@
-set(LLVM_LINK_COMPONENTS object)
+set(LLVM_LINK_COMPONENTS
+  Object
+  Support
+  )
 
 add_llvm_utility(obj2yaml
   obj2yaml.cpp coff2yaml.cpp
index 91959119e4911947e8a3520b51614be11e05dd05..816edeae2dc965cd95336f3fe5395390dc1efdd6 100644 (file)
@@ -1,4 +1,21 @@
-set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} bitreader asmparser bitwriter irreader instrumentation scalaropts objcarcopts ipo vectorize)
+set(LLVM_LINK_COMPONENTS
+  ${LLVM_TARGETS_TO_BUILD}
+  Analysis
+  BitWriter
+  Core
+  IPA
+  IPO
+  IRReader
+  InstCombine
+  Instrumentation
+  MC
+  ObjCARCOpts
+  ScalarOpts
+  Support
+  Target
+  TransformUtils
+  Vectorize
+  )
 
 add_llvm_tool(opt
   AnalysisWrappers.cpp
index 8d9d6522469db39a411447bda0a85d56eaea5641..3e2e4b1a250946e17969c8cf4fbcd2fcd0f32ecc 100644 (file)
@@ -1,4 +1,7 @@
-set(LLVM_LINK_COMPONENTS object)
+set(LLVM_LINK_COMPONENTS
+  Object
+  Support
+  )
 
 add_llvm_utility(yaml2obj
   yaml2obj.cpp
index 7e5b35852749c6a86164a5f64f1e19ffd9e88474..d9f8c0c1ba699a987bdb6193142dfe7be0d03c20 100644 (file)
@@ -1,6 +1,8 @@
 set(LLVM_LINK_COMPONENTS
   Analysis
   AsmParser
+  Core
+  Support
   )
 
 add_llvm_unittest(AnalysisTests
index d8f5fe1f191dc8c0a1fd4cc516549726126f78b4..743ab18ad2c7b697288b429ef9e3ba6def1f2acd 100644 (file)
@@ -1,6 +1,8 @@
 set(LLVM_LINK_COMPONENTS
   BitReader
   BitWriter
+  Core
+  Support
   )
 
 add_llvm_unittest(BitcodeTests
index 5973bae3aaba26698fe539bfa7f172aa59c5514a..65c0ac3f20e42494c5cb178d579ea45a0a0fab70 100644 (file)
@@ -1,7 +1,6 @@
 set(LLVM_LINK_COMPONENTS
-  asmprinter
-  codegen
-  support
+  AsmPrinter
+  Support
   )
 
 set(CodeGenSources
index ec580b7f69a46422a0e56df786ab5a3f6d4fe83a..e844e95251ab2a69930d74d3989c72227c0572be 100644 (file)
@@ -1,7 +1,5 @@
 set(LLVM_LINK_COMPONENTS
-  debuginfo
-  object
-  support
+  DebugInfo
   )
 
 set(DebugInfoSources
index 4eefc1e3bb1b0ddcc758cd81311005a4893dde53..7ef509b3243d70d43260d6af307f57dd8a6e4d2b 100644 (file)
@@ -1,5 +1,8 @@
 set(LLVM_LINK_COMPONENTS
-  interpreter
+  Core
+  ExecutionEngine
+  Interpreter
+  Support
   )
 
 add_llvm_unittest(ExecutionEngineTests
index ef37026dfc9f5b668000efcc5964ed4266ff3007..d5e0b2eea84240896c4f8a5b167bec5a272877c7 100644 (file)
@@ -1,8 +1,11 @@
 set(LLVM_LINK_COMPONENTS
-  asmparser
-  bitreader
-  bitwriter
-  jit
+  AsmParser
+  BitReader
+  BitWriter
+  Core
+  ExecutionEngine
+  JIT
+  Support
   nativecodegen
   )
 
index ed4309919387ddda4d3c060d10dc4495f3b91b32..a425b2478ac6b10a59bf39cdae9c1206f888ae3b 100644 (file)
@@ -1,8 +1,12 @@
 set(LLVM_LINK_COMPONENTS
-  asmparser
-  bitreader
-  bitwriter
-  mcjit
+  Analysis
+  Core
+  ExecutionEngine
+  JIT
+  MCJIT
+  ScalarOpts
+  Support
+  Target
   nativecodegen
   )
 
index fd0831f8e1fa1100f1c7919fce7824806ef0e5cc..a597a3524a7be9e66996dab6f4c4a34aade9016a 100644 (file)
@@ -1,7 +1,9 @@
 set(LLVM_LINK_COMPONENTS
-  asmparser
-  core
-  ipa
+  Analysis
+  AsmParser
+  Core
+  IPA
+  Support
   )
 
 set(IRSources
index b491dd7f6bdf22330aa5c156f62e0c1264ad910c..6dd66ce75bd3a0236c6907b7bbe871741f007e08 100644 (file)
@@ -1,5 +1,6 @@
 set(LLVM_LINK_COMPONENTS
-  object
+  Object
+  Support
   )
 
 add_llvm_unittest(ObjectTests
index 4b471939ef1fa02baf0f67ba3757fc0e726ca25a..88734d2b8fcfd8bc7ed44010bc1765bb5173052c 100644 (file)
@@ -1,5 +1,7 @@
 set(LLVM_LINK_COMPONENTS
+  Core
   Instrumentation
+  Support
   )
 
 add_llvm_unittest(DebugIRTests
index 3cff95e84b70e25fadad4b657718ceb80c889697..60447bb521056f1e3f6bbfe62c4375e20c62a81c 100644 (file)
@@ -1,4 +1,6 @@
 set(LLVM_LINK_COMPONENTS
+  Core
+  Support
   TransformUtils
   )