mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
61 lines
883 B
CMake
61 lines
883 B
CMake
if ( LLVM_INCLUDE_UTILS )
|
|
add_subdirectory(ChildTarget)
|
|
endif()
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
CodeGen
|
|
Core
|
|
ExecutionEngine
|
|
IRReader
|
|
Interpreter
|
|
JITLink
|
|
MC
|
|
MCJIT
|
|
Object
|
|
OrcShared
|
|
OrcJIT
|
|
OrcTargetProcess
|
|
Passes
|
|
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 )
|
|
|
|
if( LLVM_USE_PERF )
|
|
set(LLVM_LINK_COMPONENTS
|
|
${LLVM_LINK_COMPONENTS}
|
|
DebugInfoDWARF
|
|
PerfJITEvents
|
|
Object
|
|
)
|
|
endif( LLVM_USE_PERF )
|
|
|
|
add_llvm_tool(lli
|
|
lli.cpp
|
|
ExecutionUtils.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|
|
|
|
export_executable_symbols(lli)
|