mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[CMake] Update LLVM_LINK_COMPONENTS for each CMakeLists.txt.
llvm-svn: 196908
This commit is contained in:
parent
fe135fe65e
commit
955efe24ce
@ -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
|
add_llvm_example(BrainF
|
||||||
BrainF.cpp
|
BrainF.cpp
|
||||||
|
@ -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)
|
set(LLVM_REQUIRES_EH 1)
|
||||||
|
|
||||||
add_llvm_example(ExceptionDemo
|
add_llvm_example(ExceptionDemo
|
||||||
|
@ -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
|
add_llvm_example(Fibonacci
|
||||||
fibonacci.cpp
|
fibonacci.cpp
|
||||||
|
@ -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
|
add_llvm_example(HowToUseJIT
|
||||||
HowToUseJIT.cpp
|
HowToUseJIT.cpp
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS core)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
Core
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_example(Kaleidoscope-Ch3
|
add_llvm_example(Kaleidoscope-Ch3
|
||||||
toy.cpp
|
toy.cpp
|
||||||
|
@ -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
|
add_llvm_example(Kaleidoscope-Ch4
|
||||||
toy.cpp
|
toy.cpp
|
||||||
|
@ -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
|
add_llvm_example(Kaleidoscope-Ch5
|
||||||
toy.cpp
|
toy.cpp
|
||||||
|
@ -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
|
add_llvm_example(Kaleidoscope-Ch6
|
||||||
toy.cpp
|
toy.cpp
|
||||||
|
@ -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)
|
set(LLVM_REQUIRES_RTTI 1)
|
||||||
|
|
||||||
add_llvm_example(Kaleidoscope-Ch7
|
add_llvm_example(Kaleidoscope-Ch7
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
set(LLVM_LINK_COMPONENTS bitwriter)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
BitWriter
|
||||||
|
Core
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_example(ModuleMaker
|
add_llvm_example(ModuleMaker
|
||||||
ModuleMaker.cpp
|
ModuleMaker.cpp
|
||||||
|
@ -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
|
add_llvm_example(ParallelJIT
|
||||||
ParallelJIT.cpp
|
ParallelJIT.cpp
|
||||||
|
@ -1,5 +1,20 @@
|
|||||||
set(LLVM_LINK_COMPONENTS asmparser instrumentation scalaropts ipo
|
set(LLVM_LINK_COMPONENTS
|
||||||
linker bitreader bitwriter irreader vectorize objcarcopts)
|
Analysis
|
||||||
|
BitWriter
|
||||||
|
Core
|
||||||
|
IPA
|
||||||
|
IPO
|
||||||
|
IRReader
|
||||||
|
InstCombine
|
||||||
|
Instrumentation
|
||||||
|
Linker
|
||||||
|
ObjCARCOpts
|
||||||
|
ScalarOpts
|
||||||
|
Support
|
||||||
|
Target
|
||||||
|
TransformUtils
|
||||||
|
Vectorize
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(bugpoint
|
add_llvm_tool(bugpoint
|
||||||
BugDriver.cpp
|
BugDriver.cpp
|
||||||
|
@ -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
|
add_llvm_tool(llc
|
||||||
llc.cpp
|
llc.cpp
|
||||||
|
@ -1,6 +1,18 @@
|
|||||||
add_subdirectory(ChildTarget)
|
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 )
|
if( LLVM_USE_OPROFILE )
|
||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS support object bitreader)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
Object
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-ar
|
add_llvm_tool(llvm-ar
|
||||||
llvm-ar.cpp
|
llvm-ar.cpp
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
set(LLVM_LINK_COMPONENTS asmparser bitwriter)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
AsmParser
|
||||||
|
BitWriter
|
||||||
|
Core
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-as
|
add_llvm_tool(llvm-as
|
||||||
llvm-as.cpp
|
llvm-as.cpp
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS bitreader)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
BitReader
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-bcanalyzer
|
add_llvm_tool(llvm-bcanalyzer
|
||||||
llvm-bcanalyzer.cpp
|
llvm-bcanalyzer.cpp
|
||||||
|
@ -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)
|
if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wstrict-prototypes")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wstrict-prototypes")
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
set(LLVM_LINK_COMPONENTS support asmparser bitreader irreader)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
Core
|
||||||
|
IRReader
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-diff
|
add_llvm_tool(llvm-diff
|
||||||
llvm-diff.cpp
|
llvm-diff.cpp
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
set(LLVM_LINK_COMPONENTS bitreader analysis)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
BitReader
|
||||||
|
Core
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-dis
|
add_llvm_tool(llvm-dis
|
||||||
llvm-dis.cpp
|
llvm-dis.cpp
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
DebugInfo
|
DebugInfo
|
||||||
Object
|
Object
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-dwarfdump
|
add_llvm_tool(llvm-dwarfdump
|
||||||
|
@ -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
|
add_llvm_tool(llvm-extract
|
||||||
llvm-extract.cpp
|
llvm-extract.cpp
|
||||||
|
@ -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
|
add_llvm_tool(llvm-link
|
||||||
llvm-link.cpp
|
llvm-link.cpp
|
||||||
|
@ -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
|
add_llvm_tool(llvm-lto
|
||||||
llvm-lto.cpp
|
llvm-lto.cpp
|
||||||
|
@ -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
|
add_llvm_tool(llvm-mc
|
||||||
llvm-mc.cpp
|
llvm-mc.cpp
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
set(LLVM_LINK_COMPONENTS bitreader object)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
BitReader
|
||||||
|
Core
|
||||||
|
Object
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-nm
|
add_llvm_tool(llvm-nm
|
||||||
llvm-nm.cpp
|
llvm-nm.cpp
|
||||||
|
@ -2,9 +2,8 @@ set(LLVM_LINK_COMPONENTS
|
|||||||
${LLVM_TARGETS_TO_BUILD}
|
${LLVM_TARGETS_TO_BUILD}
|
||||||
DebugInfo
|
DebugInfo
|
||||||
MC
|
MC
|
||||||
MCParser
|
|
||||||
MCDisassembler
|
|
||||||
Object
|
Object
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-objdump
|
add_llvm_tool(llvm-objdump
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
${LLVM_TARGETS_TO_BUILD}
|
${LLVM_TARGETS_TO_BUILD}
|
||||||
bitreader
|
Object
|
||||||
object)
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-readobj
|
add_llvm_tool(llvm-readobj
|
||||||
llvm-readobj.cpp
|
llvm-readobj.cpp
|
||||||
|
@ -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
|
add_llvm_tool(llvm-rtdyld
|
||||||
llvm-rtdyld.cpp
|
llvm-rtdyld.cpp
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS object)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
Object
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-size
|
add_llvm_tool(llvm-size
|
||||||
llvm-size.cpp
|
llvm-size.cpp
|
||||||
|
@ -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
|
add_llvm_tool(llvm-stress
|
||||||
llvm-stress.cpp
|
llvm-stress.cpp
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
DebugInfo
|
DebugInfo
|
||||||
Object
|
Object
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_tool(llvm-symbolizer
|
add_llvm_tool(llvm-symbolizer
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
${LLVM_TARGETS_TO_BUILD}
|
${LLVM_TARGETS_TO_BUILD}
|
||||||
ipo scalaropts linker bitreader bitwriter lto mcdisassembler vectorize)
|
Core
|
||||||
|
LTO
|
||||||
|
MC
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_definitions( -DLLVM_VERSION_INFO=\"${PACKAGE_VERSION}\" )
|
add_definitions( -DLLVM_VERSION_INFO=\"${PACKAGE_VERSION}\" )
|
||||||
|
|
||||||
|
@ -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
|
add_llvm_tool(macho-dump
|
||||||
macho-dump.cpp
|
macho-dump.cpp
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS object)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
Object
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_utility(obj2yaml
|
add_llvm_utility(obj2yaml
|
||||||
obj2yaml.cpp coff2yaml.cpp
|
obj2yaml.cpp coff2yaml.cpp
|
||||||
|
@ -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
|
add_llvm_tool(opt
|
||||||
AnalysisWrappers.cpp
|
AnalysisWrappers.cpp
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS object)
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
Object
|
||||||
|
Support
|
||||||
|
)
|
||||||
|
|
||||||
add_llvm_utility(yaml2obj
|
add_llvm_utility(yaml2obj
|
||||||
yaml2obj.cpp
|
yaml2obj.cpp
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
Analysis
|
Analysis
|
||||||
AsmParser
|
AsmParser
|
||||||
|
Core
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_unittest(AnalysisTests
|
add_llvm_unittest(AnalysisTests
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
BitReader
|
BitReader
|
||||||
BitWriter
|
BitWriter
|
||||||
|
Core
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_unittest(BitcodeTests
|
add_llvm_unittest(BitcodeTests
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
asmprinter
|
AsmPrinter
|
||||||
codegen
|
Support
|
||||||
support
|
|
||||||
)
|
)
|
||||||
|
|
||||||
set(CodeGenSources
|
set(CodeGenSources
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
debuginfo
|
DebugInfo
|
||||||
object
|
|
||||||
support
|
|
||||||
)
|
)
|
||||||
|
|
||||||
set(DebugInfoSources
|
set(DebugInfoSources
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
interpreter
|
Core
|
||||||
|
ExecutionEngine
|
||||||
|
Interpreter
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_unittest(ExecutionEngineTests
|
add_llvm_unittest(ExecutionEngineTests
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
asmparser
|
AsmParser
|
||||||
bitreader
|
BitReader
|
||||||
bitwriter
|
BitWriter
|
||||||
jit
|
Core
|
||||||
|
ExecutionEngine
|
||||||
|
JIT
|
||||||
|
Support
|
||||||
nativecodegen
|
nativecodegen
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
asmparser
|
Analysis
|
||||||
bitreader
|
Core
|
||||||
bitwriter
|
ExecutionEngine
|
||||||
mcjit
|
JIT
|
||||||
|
MCJIT
|
||||||
|
ScalarOpts
|
||||||
|
Support
|
||||||
|
Target
|
||||||
nativecodegen
|
nativecodegen
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
asmparser
|
Analysis
|
||||||
core
|
AsmParser
|
||||||
ipa
|
Core
|
||||||
|
IPA
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
set(IRSources
|
set(IRSources
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
object
|
Object
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_unittest(ObjectTests
|
add_llvm_unittest(ObjectTests
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
Core
|
||||||
Instrumentation
|
Instrumentation
|
||||||
|
Support
|
||||||
)
|
)
|
||||||
|
|
||||||
add_llvm_unittest(DebugIRTests
|
add_llvm_unittest(DebugIRTests
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
set(LLVM_LINK_COMPONENTS
|
set(LLVM_LINK_COMPONENTS
|
||||||
|
Core
|
||||||
|
Support
|
||||||
TransformUtils
|
TransformUtils
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user