• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1add_lldb_library(lldbPluginProcessLinux
2  NativeProcessLinux.cpp
3  NativeRegisterContextLinux.cpp
4  NativeRegisterContextLinux_arm.cpp
5  NativeRegisterContextLinux_arm64.cpp
6  NativeRegisterContextLinux_mips64.cpp
7  NativeRegisterContextLinux_ppc64le.cpp
8  NativeRegisterContextLinux_s390x.cpp
9  NativeRegisterContextLinux_x86_64.cpp
10  NativeThreadLinux.cpp
11  ProcessorTrace.cpp
12  SingleStepCheck.cpp
13
14  LINK_LIBS
15    lldbCore
16    lldbHost
17    lldbSymbol
18    lldbTarget
19    lldbUtility
20    lldbPluginProcessPOSIX
21    lldbPluginProcessUtility
22  LINK_COMPONENTS
23    Support
24  )
25