summaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/Linux/CMakeLists.txt
blob: bb69016702cdf19e5783fb6f17b5d765d11a360b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
add_lldb_library(lldbPluginProcessLinux
  IntelPTCollector.cpp
  IntelPTSingleBufferTrace.cpp
  IntelPTMultiCoreTrace.cpp
  IntelPTPerThreadProcessTrace.cpp
  IntelPTThreadTraceCollection.cpp
  NativeProcessLinux.cpp
  NativeRegisterContextLinux.cpp
  NativeRegisterContextLinux_arm.cpp
  NativeRegisterContextLinux_arm64.cpp
  NativeRegisterContextLinux_arm64dbreg.cpp
  NativeRegisterContextLinux_loongarch64.cpp
  NativeRegisterContextLinux_ppc64le.cpp
  NativeRegisterContextLinux_riscv64.cpp
  NativeRegisterContextLinux_s390x.cpp
  NativeRegisterContextLinux_x86_64.cpp
  NativeThreadLinux.cpp
  Perf.cpp
  Procfs.cpp
  SingleStepCheck.cpp

  LINK_COMPONENTS
    Support
    TargetParser
  LINK_LIBS
    lldbCore
    lldbHost
    lldbSymbol
    lldbTarget
    lldbUtility
    lldbPluginProcessPOSIX
    lldbPluginProcessUtility
  )