forked from OSchip/llvm-project
42 lines
792 B
CMake
42 lines
792 B
CMake
add_llvm_component_library(LLVMOrcJIT
|
|
CompileOnDemandLayer.cpp
|
|
CompileUtils.cpp
|
|
Core.cpp
|
|
DebugUtils.cpp
|
|
ExecutionUtils.cpp
|
|
IndirectionUtils.cpp
|
|
IRCompileLayer.cpp
|
|
IRTransformLayer.cpp
|
|
JITTargetMachineBuilder.cpp
|
|
LazyReexports.cpp
|
|
Legacy.cpp
|
|
Layer.cpp
|
|
LLJIT.cpp
|
|
MachOPlatform.cpp
|
|
Mangling.cpp
|
|
NullResolver.cpp
|
|
ObjectLinkingLayer.cpp
|
|
ObjectTransformLayer.cpp
|
|
OrcABISupport.cpp
|
|
OrcCBindings.cpp
|
|
OrcV2CBindings.cpp
|
|
OrcMCJITReplacement.cpp
|
|
RTDyldObjectLinkingLayer.cpp
|
|
ThreadSafeModule.cpp
|
|
Speculation.cpp
|
|
SpeculateAnalyses.cpp
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine/Orc
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|
|
|
|
target_link_libraries(LLVMOrcJIT
|
|
PRIVATE
|
|
LLVMAnalysis
|
|
LLVMBitReader
|
|
LLVMBitWriter
|
|
LLVMPasses
|
|
)
|