forked from OSchip/llvm-project
parent
7a503facdf
commit
99d294ee9a
|
@ -3,4 +3,6 @@ include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/.. )
|
|||
add_llvm_library(LLVMIntelJITEvents
|
||||
IntelJITEventListener.cpp
|
||||
jitprofiling.c
|
||||
)
|
||||
|
||||
LINK_LIBS pthread ${CMAKE_DL_LIBS}
|
||||
)
|
||||
|
|
|
@ -21,4 +21,4 @@
|
|||
type = OptionalLibrary
|
||||
name = IntelJITEvents
|
||||
parent = ExecutionEngine
|
||||
required_libraries = Core DebugInfoDWARF Support
|
||||
required_libraries = Core DebugInfoDWARF Support Object ExecutionEngine
|
||||
|
|
|
@ -21,3 +21,4 @@
|
|||
type = OptionalLibrary
|
||||
name = OProfileJIT
|
||||
parent = ExecutionEngine
|
||||
required_libraries = Support Object ExecutionEngine
|
||||
|
|
|
@ -14,6 +14,10 @@ set(LLVM_LINK_COMPONENTS
|
|||
nativecodegen
|
||||
object
|
||||
selectiondag
|
||||
Support
|
||||
ExecutionEngine
|
||||
RuntimeDyld
|
||||
Core
|
||||
)
|
||||
|
||||
add_llvm_tool(llvm-jitlistener
|
||||
|
|
Loading…
Reference in New Issue