slydiman wrote:

@ashgti Did you test #130169 on Windows?
This patch will fix the building, but I'm not sure that it will work on Windows 
considering this: 
```
// TODO: On Windows this should be a HANDLE, and wait should use
// WaitForMultipleObjects
typedef int WaitableHandle;

IOObject::WaitableHandle Socket::GetWaitableHandle() {
  // TODO: On Windows, use WSAEventSelect
  return m_socket;
}
```
It seems you need a Windows specific implementation.

https://github.com/llvm/llvm-project/pull/135638
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to