[Lldb-commits] [lldb] [lldb] Adding pipe support to lldb_private::MainLoopWindows. (PR #145621)
Martin Storsjö via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 2 02:50:06 PDT 2025
mstorsjo wrote:
This broke compilation on mingw (for 64 bit targets, a 32 bit test build is still pending):
```
../../lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp:455:29: error: cast from pointer to smaller type 'lldb::socket_t' (aka 'unsigned int') loses information
455 | select_helper.FDSetRead((lldb::socket_t)handle);
| ^~~~~~~~~~~~~~~~~~~~~~
../../lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp:497:39: error: cast from pointer to smaller type 'lldb::socket_t' (aka 'unsigned int') loses information
497 | if (select_helper.FDIsSetRead((lldb::socket_t)handle))
| ^~~~~~~~~~~~~~~~~~~~~~
2 warnings and 2 errors generated.
```
https://github.com/llvm/llvm-project/pull/145621
More information about the lldb-commits
mailing list