Patch by Jaydeep Patil Summery: 1. Add MIPS variants by parsing e_flags of the ELF 2. Create RegisterInfoInterface and RegisterContext for MIPS64 and MIPS64EL Reviewers: clayborg Subscribers: tberghammer, bhushan, mohit.bhakkad, sagar Differential Revision: http://reviews.llvm.org/D8166 llvm-svn: 232467
20 lines
428 B
CMake
20 lines
428 B
CMake
set(LLVM_NO_RTTI 1)
|
|
|
|
include_directories(.)
|
|
include_directories(../POSIX)
|
|
include_directories(../Utility)
|
|
|
|
add_lldb_library(lldbPluginProcessLinux
|
|
LinuxThread.cpp
|
|
NativeProcessLinux.cpp
|
|
NativeRegisterContextLinux_arm64.cpp
|
|
NativeRegisterContextLinux_x86_64.cpp
|
|
NativeRegisterContextLinux_mips64.cpp
|
|
NativeThreadLinux.cpp
|
|
ProcessLinux.cpp
|
|
ProcessMonitor.cpp
|
|
ProcFileReader.cpp
|
|
ThreadStateCoordinator.cpp
|
|
)
|
|
|