Add support for ppc64le to create breakpoints and read/write general purpose registers. Other features for ppc64le and functions to read/write other registers are being implemented. Patch by Alexandre Yukio Yamashita (alexandreyy) Differential Revision: https://reviews.llvm.org/D38323 llvm-svn: 315008
29 lines
669 B
CMake
29 lines
669 B
CMake
include_directories(.)
|
|
include_directories(../POSIX)
|
|
include_directories(../Utility)
|
|
|
|
add_lldb_library(lldbPluginProcessLinux PLUGIN
|
|
NativeProcessLinux.cpp
|
|
NativeRegisterContextLinux.cpp
|
|
NativeRegisterContextLinux_arm.cpp
|
|
NativeRegisterContextLinux_arm64.cpp
|
|
NativeRegisterContextLinux_mips64.cpp
|
|
NativeRegisterContextLinux_ppc64le.cpp
|
|
NativeRegisterContextLinux_s390x.cpp
|
|
NativeRegisterContextLinux_x86_64.cpp
|
|
NativeThreadLinux.cpp
|
|
ProcessorTrace.cpp
|
|
SingleStepCheck.cpp
|
|
|
|
LINK_LIBS
|
|
lldbCore
|
|
lldbHost
|
|
lldbSymbol
|
|
lldbTarget
|
|
lldbUtility
|
|
lldbPluginProcessPOSIX
|
|
lldbPluginProcessUtility
|
|
LINK_COMPONENTS
|
|
Support
|
|
)
|