[Lldb-commits] [lldb] Fix connecting via abstract socket (PR #136466)

Dmitry Vasilyev via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 25 15:57:05 PDT 2025


slydiman wrote:

Note DomainSocket is not supported on Windows, so removing the following code broke the Windows build!
```
#if LLDB_ENABLE_POSIX
      socket = new DomainSocket(sockfd, /*should_close=*/true);
#else
      WithColor::error() << "lldb-platform child: Unix domain sockets are not "
                            "supported on this platform.";
      return socket_error;
#endif
```

https://github.com/llvm/llvm-project/pull/136466


More information about the lldb-commits mailing list