mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
dbb9827d2f
RuntimeDyld. This should fix http://llvm.org/PR22593. llvm-svn: 229343
26 lines
537 B
CMake
26 lines
537 B
CMake
|
|
|
|
add_llvm_library(LLVMExecutionEngine
|
|
ExecutionEngine.cpp
|
|
ExecutionEngineBindings.cpp
|
|
GDBRegistrationListener.cpp
|
|
SectionMemoryManager.cpp
|
|
TargetSelect.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine
|
|
)
|
|
|
|
add_subdirectory(Interpreter)
|
|
add_subdirectory(MCJIT)
|
|
add_subdirectory(Orc)
|
|
add_subdirectory(RuntimeDyld)
|
|
|
|
if( LLVM_USE_OPROFILE )
|
|
add_subdirectory(OProfileJIT)
|
|
endif( LLVM_USE_OPROFILE )
|
|
|
|
if( LLVM_USE_INTEL_JITEVENTS )
|
|
add_subdirectory(IntelJITEvents)
|
|
endif( LLVM_USE_INTEL_JITEVENTS )
|