
Resumbitting the commit after fixing the following problems: - broken unit tests on windows: incorrect gtest usage on my part (TEST vs. TEST_F) - the new code did not correctly handle the case where we went to interrupt the process, but it stopped due to a different reason - the interrupt request would remain queued and would interfere with the following "continue". I also added a unit test for this case. This reapplies r277156 and r277139. llvm-svn: 278118
18 lines
493 B
CMake
18 lines
493 B
CMake
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
include_directories(${LIBXML2_INCLUDE_DIR})
|
|
endif()
|
|
|
|
add_lldb_library(lldbPluginProcessGDBRemote
|
|
GDBRemoteClientBase.cpp
|
|
GDBRemoteCommunication.cpp
|
|
GDBRemoteCommunicationClient.cpp
|
|
GDBRemoteCommunicationServer.cpp
|
|
GDBRemoteCommunicationServerCommon.cpp
|
|
GDBRemoteCommunicationServerLLGS.cpp
|
|
GDBRemoteCommunicationServerPlatform.cpp
|
|
GDBRemoteRegisterContext.cpp
|
|
ProcessGDBRemote.cpp
|
|
ProcessGDBRemoteLog.cpp
|
|
ThreadGDBRemote.cpp
|
|
)
|