• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This tool is excluded from the CMake build if Intel JIT events are disabled.
2
3link_directories( ${LLVM_INTEL_JITEVENTS_LIBDIR} )
4include_directories( ${LLVM_INTEL_JITEVENTS_INCDIR} )
5
6set(LLVM_LINK_COMPONENTS
7  asmparser
8  bitreader
9  debuginfo
10  inteljitevents
11  interpreter
12  jit
13  mcjit
14  nativecodegen
15  object
16  selectiondag
17  )
18
19add_llvm_tool(llvm-jitlistener
20  llvm-jitlistener.cpp
21  )
22