diff options
author | Pavel Labath <pavel@labath.sk> | 2025-04-13 09:34:30 +0200 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2025-04-13 09:52:30 +0200 |
commit | 1c5ce2d74fa3ee15d1cb2e092cce0754c8ce19fa (patch) | |
tree | 63aef640101bc358aad77c9c1ad6bdbf6dffc5e3 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | |
parent | 028429ac452acde227ae0bfafbfe8579c127e1ea (diff) | |
download | llvm-1c5ce2d74fa3ee15d1cb2e092cce0754c8ce19fa.zip llvm-1c5ce2d74fa3ee15d1cb2e092cce0754c8ce19fa.tar.gz llvm-1c5ce2d74fa3ee15d1cb2e092cce0754c8ce19fa.tar.bz2 |
Reapply "[lldb] ProcessGdbRemote header gardning"
This reverts commit 68ab45f0533f3bbfc1c96bddd53de7e769180219, reapplying
2fd860c1f559c0b0be66cc000e38270a04d0a1a3. The only change is keeping
"lldb/Host/Config.h", which I believe was the cause of the failures.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index 77eadfc..abdc3da 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp @@ -7,14 +7,8 @@ //===----------------------------------------------------------------------===// #include "GDBRemoteCommunication.h" - -#include <climits> -#include <cstring> -#include <future> -#include <sys/stat.h> - +#include "ProcessGDBRemoteLog.h" #include "lldb/Host/Config.h" -#include "lldb/Host/ConnectionFileDescriptor.h" #include "lldb/Host/FileSystem.h" #include "lldb/Host/Host.h" #include "lldb/Host/HostInfo.h" @@ -30,13 +24,14 @@ #include "lldb/Utility/Log.h" #include "lldb/Utility/RegularExpression.h" #include "lldb/Utility/StreamString.h" -#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringRef.h" #include "llvm/Config/llvm-config.h" // for LLVM_ENABLE_ZLIB #include "llvm/Support/ScopedPrinter.h" - -#include "ProcessGDBRemoteLog.h" +#include <climits> +#include <cstring> +#include <future> +#include <sys/stat.h> #if defined(__APPLE__) #define DEBUGSERVER_BASENAME "debugserver" |