Update LLVM to 21.1.2 and add Mtools
All checks were successful
Builds / XTchain (full, linux) (push) Successful in 2h17m38s
Builds / XTchain (full, windows) (push) Successful in 2h18m57s
Builds / XTchain (minimal, linux) (push) Successful in 1m54s
Builds / XTchain (minimal, windows) (push) Successful in 1m37s

This commit is contained in:
2025-09-27 14:27:27 +02:00
parent 2d4dffe38f
commit ce379beeb2
2 changed files with 65 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/lldb/source/Host/windows/MainLoopWindows.cpp b/lldb/source/Host/windows/MainLoopWindows.cpp
index c0b10797e..e971b8cfd 100644
--- a/lldb/source/Host/windows/MainLoopWindows.cpp
+++ b/lldb/source/Host/windows/MainLoopWindows.cpp
@@ -58,7 +58,7 @@ public:
// Keep trying to cancel ReadFile() until the thread exits.
do {
CancelIoEx(m_handle, /*lpOverlapped=*/NULL);
- } while (WaitForSingleObject(m_monitor_thread.native_handle(), 1) ==
+ } while (WaitForSingleObject((HANDLE)m_monitor_thread.native_handle(), 1) ==
WAIT_TIMEOUT);
m_monitor_thread.join();
}