You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
665 B
45 lines
665 B
4 months ago
|
if ( LLVM_INCLUDE_UTILS )
|
||
|
add_subdirectory(ChildTarget)
|
||
|
endif()
|
||
|
|
||
|
set(LLVM_LINK_COMPONENTS
|
||
|
CodeGen
|
||
|
Core
|
||
|
ExecutionEngine
|
||
|
IRReader
|
||
|
Instrumentation
|
||
|
Interpreter
|
||
|
MC
|
||
|
MCJIT
|
||
|
Object
|
||
|
OrcJIT
|
||
|
RuntimeDyld
|
||
|
SelectionDAG
|
||
|
Support
|
||
|
Target
|
||
|
TransformUtils
|
||
|
native
|
||
|
)
|
||
|
|
||
|
if( LLVM_USE_OPROFILE )
|
||
|
set(LLVM_LINK_COMPONENTS
|
||
|
${LLVM_LINK_COMPONENTS}
|
||
|
OProfileJIT
|
||
|
)
|
||
|
endif( LLVM_USE_OPROFILE )
|
||
|
|
||
|
if( LLVM_USE_INTEL_JITEVENTS )
|
||
|
set(LLVM_LINK_COMPONENTS
|
||
|
${LLVM_LINK_COMPONENTS}
|
||
|
DebugInfoDWARF
|
||
|
IntelJITEvents
|
||
|
Object
|
||
|
)
|
||
|
endif( LLVM_USE_INTEL_JITEVENTS )
|
||
|
|
||
|
add_llvm_tool(lli
|
||
|
lli.cpp
|
||
|
OrcLazyJIT.cpp
|
||
|
)
|
||
|
export_executable_symbols(lli)
|