2012-03-13 16:33:15 +08:00
|
|
|
|
2013-06-29 03:11:40 +08:00
|
|
|
set(LLVM_LINK_COMPONENTS mcjit jit interpreter nativecodegen bitreader asmparser irreader selectiondag native instrumentation)
|
2010-09-14 07:59:48 +08:00
|
|
|
|
2013-10-03 01:12:36 +08:00
|
|
|
add_subdirectory(ChildTarget)
|
|
|
|
|
2012-03-13 16:33:15 +08:00
|
|
|
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}
|
2013-01-29 03:52:37 +08:00
|
|
|
DebugInfo
|
2012-03-13 16:33:15 +08:00
|
|
|
IntelJITEvents
|
2013-01-29 03:52:37 +08:00
|
|
|
Object
|
2012-03-13 16:33:15 +08:00
|
|
|
)
|
|
|
|
endif( LLVM_USE_INTEL_JITEVENTS )
|
|
|
|
|
2008-09-22 09:08:49 +08:00
|
|
|
add_llvm_tool(lli
|
|
|
|
lli.cpp
|
2013-10-04 08:49:38 +08:00
|
|
|
RemoteMemoryManager.cpp
|
2012-09-06 02:15:08 +08:00
|
|
|
RemoteTarget.cpp
|
2013-10-03 01:12:36 +08:00
|
|
|
RemoteTargetExternal.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
)
|
2013-12-05 09:01:58 +08:00
|
|
|
set_target_properties(lli PROPERTIES ENABLE_EXPORTS 1)
|