[Lldb-commits] [lldb] [lldb] Updated lldb-server to spawn the child process and share socket (PR #101283)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 7 05:57:56 PDT 2024
================
@@ -44,6 +47,14 @@ using namespace llvm;
// option descriptors for getopt_long_only()
+#ifdef _WIN32
+typedef pipe_t fd_t;
+#define kInvalidFD (LLDB_INVALID_PIPE)
----------------
labath wrote:
Lets make this a real constant (not a macro).
https://github.com/llvm/llvm-project/pull/101283
More information about the lldb-commits
mailing list