INFO:2026-02-24T02:48:04Z:root:pulling... From github.com:llvm/llvm-project * branch main -> FETCH_HEAD 3b2c1db87097..1b47242dcda0 main -> origin/main Switched to branch 'main' Your branch is behind 'origin/main' by 1 commit, and can be fast-forwarded. (use "git pull" to update your local branch) HEAD is now at 1b47242dcda0 [CHR] Skip regions containing convergent calls (#180882) INFO:2026-02-24T02:48:07Z:root:syncing... Deleted branch merge (was c8f67deb2106). Switched to a new branch 'merge' branch 'merge' set up to track 'origin/main'. [merge ada23d20e16c] [gn build] Port 796a1ea79f41 1 file changed, 2 insertions(+), 1 deletion(-) [merge a613a8982ec5] [gn build] Port 8bdef33e6ae9 2 files changed, 7 insertions(+) [merge d235f478cc72] [gn build] Port a8989c08a87e 1 file changed, 1 insertion(+), 1 deletion(-) [merge 82076145747d] [gn build] Port de3034b1c14d 1 file changed, 1 insertion(+) [gn build] Port 796a1ea79f41 -- https://github.com/llvm/llvm-project/commit/796a1ea79f41 [gn build] Port 8bdef33e6ae9 -- https://github.com/llvm/llvm-project/commit/8bdef33e6ae9 [gn build] Port a8989c08a87e -- https://github.com/llvm/llvm-project/commit/a8989c08a87e [gn build] Port de3034b1c14d -- https://github.com/llvm/llvm-project/commit/de3034b1c14d INFO:2026-02-24T02:48:12Z:root:building ninja: Entering directory `out/gn' [0/1] Regenerating ninja files [1/1294] CXX obj/lldb/source/Host/windows/Host.ConnectionConPTYWindows.o FAILED: obj/lldb/source/Host/windows/Host.ConnectionConPTYWindows.o ../../../chrome/src/third_party/llvm-build/Release+Asserts/bin/clang++ -MMD -MF obj/lldb/source/Host/windows/Host.ConnectionConPTYWindows.o.d -o obj/lldb/source/Host/windows/Host.ConnectionConPTYWindows.o -c ../../lldb/source/Host/windows/ConnectionConPTYWindows.cpp -I../../llvm/include -Igen/llvm/include -I../../lldb/include -Igen/lldb/include -I../../sysroot/usr/include/libxml2 -O3 -fdiagnostics-color -Wall -Wextra -Wno-unused-parameter -Wdelete-non-virtual-dtor -Wstring-conversion -no-canonical-prefixes -Werror=date-time -fdebug-compilation-dir=. --sysroot=../../sysroot -Wpoison-system-directories -fPIC -Wcovered-switch-default -fno-strict-aliasing -std=c++17 -fvisibility-inlines-hidden -fno-exceptions -fno-rtti In file included from ../../lldb/source/Host/windows/ConnectionConPTYWindows.cpp:9: In file included from ../../lldb/include/lldb/Host/windows/ConnectionConPTYWindows.h:12: In file included from ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:12: ../../lldb/include/lldb/Host/windows/windows.h:19:10: error: 'windows.h' file not found with include; use "quotes" instead 19 | #include | ^~~~~~~~~~~ | "windows.h" In file included from ../../lldb/source/Host/windows/ConnectionConPTYWindows.cpp:9: In file included from ../../lldb/include/lldb/Host/windows/ConnectionConPTYWindows.h:12: ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:45:3: error: unknown type name 'OVERLAPPED' 45 | OVERLAPPED m_overlapped; | ^ ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:47:3: error: unknown type name 'HANDLE' 47 | HANDLE m_file; | ^ ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:48:3: error: unknown type name 'HANDLE' 48 | HANDLE m_event_handles[2]; | ^ ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:50:3: error: unknown type name 'LARGE_INTEGER' 50 | LARGE_INTEGER m_file_position; | ^ ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:56:29: error: unknown type name 'DWORD' 56 | void IncrementFilePointer(DWORD amount); | ^ In file included from ../../lldb/source/Host/windows/ConnectionConPTYWindows.cpp:9: In file included from ../../lldb/include/lldb/Host/windows/ConnectionConPTYWindows.h:13: ../../lldb/include/lldb/Host/windows/PseudoConsole.h:97:8: error: no type named 'condition_variable' in namespace 'std' 97 | std::condition_variable &GetCV() { return m_cv; }; | ~~~~~^ ../../lldb/include/lldb/Host/windows/PseudoConsole.h:116:8: error: no type named 'condition_variable' in namespace 'std' 116 | std::condition_variable m_cv{}; | ~~~~~^ ../../lldb/include/lldb/Host/windows/PseudoConsole.h:117:21: error: implicit instantiation of undefined template 'std::atomic' 117 | std::atomic m_stopping = false; | ^ ../../sysroot/lib/gcc/x86_64-linux-gnu/15/../../../../include/c++/15/bits/atomic_base.h:173:12: note: template is declared here 173 | struct atomic; | ^ ../../lldb/source/Host/windows/ConnectionConPTYWindows.cpp:47:19: error: no matching constructor for initialization of 'ConnectionGenericFile' 47 | : m_pty(pty), ConnectionGenericFile(pty->GetSTDOUTHandle(), false) {}; | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:24:3: note: candidate constructor not viable: cannot convert argument of incomplete type 'HANDLE' (aka 'void *') to 'lldb::file_t' (aka 'int') for 1st argument 24 | ConnectionGenericFile(lldb::file_t file, bool owns_file); | ^ ~~~~~~~~~~~~~~~~~ ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:60:3: note: candidate constructor not viable: requires 1 argument, but 2 were provided 60 | ConnectionGenericFile(const ConnectionGenericFile &) = delete; | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h:22:3: note: candidate constructor not viable: requires 0 arguments, but 2 were provided 22 | ConnectionGenericFile(); | ^ ../../lldb/source/Host/windows/ConnectionConPTYWindows.cpp:47:7: warning: field 'm_pty' will be initialized after base 'ConnectionGenericFile' [-Wreorder-ctor] 47 | : m_pty(pty), ConnectionGenericFile(pty->GetSTDOUTHandle(), false) {}; | ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ConnectionGenericFile(pty->GetSTDOUTHandle(), false) m_pty(pty) ../../lldb/source/Host/windows/ConnectionConPTYWindows.cpp:73:30: error: cannot initialize object parameter of type 'lldb_private::ConnectionGenericFile' with an expression of type 'lldb_private::ConnectionConPTY' 73 | ConnectionGenericFile::Read(dst, dst_len, timeout, status, error_ptr); | ^~~~ 1 warning and 11 errors generated. [2/1294] CXX obj/llvm/lib/Target/Sparc/MCTargetDesc/MCTargetDesc.SparcInstPrinter.o [3/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZTargetObjectFile.o [4/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcSelectionDAGInfo.o [5/1294] CXX obj/llvm/lib/Target/RISCV/MCA/MCA.RISCVCustomBehaviour.o [6/1294] CXX obj/llvm/lib/Target/RISCV/MCTargetDesc/MCTargetDesc.RISCVTargetStreamer.o [7/1294] CXX obj/llvm/lib/Target/RISCV/MCTargetDesc/MCTargetDesc.RISCVELFStreamer.o [8/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZCallingConv.o [9/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZPostRewrite.o [10/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.LeonPasses.o [11/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcSubtarget.o [12/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZSubtarget.o [13/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcRegisterInfo.o [14/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.DelaySlotFiller.o [15/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZLDCleanup.o [16/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZHazardRecognizer.o [17/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcISelDAGToDAG.o [18/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcInstrInfo.o [19/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZMachineScheduler.o [20/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZTDC.o [21/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZShortenInst.o [22/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcTargetObjectFile.o [23/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcFrameLowering.o [24/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZSelectionDAGInfo.o [25/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyArgumentMove.o [26/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZCopyPhysRegs.o [27/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyCleanCodeAfterTrap.o [28/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVVectorMaskDAGMutation.o [29/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcAsmPrinter.o [30/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyAddMissingPrototypes.o [31/1294] CXX obj/llvm/lib/Target/WebAssembly/GISel/LLVMWebAssemblyCodeGen.WebAssemblyCallLowering.o [32/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZLongBranch.o [33/1294] CXX obj/llvm/lib/Target/RISCV/MCTargetDesc/MCTargetDesc.RISCVBaseInfo.o [34/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVVMV0Elimination.o [35/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVTargetObjectFile.o [36/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVVectorPeephole.o [37/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyDebugFixup.o [38/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZMCInstLower.o [39/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZRegisterInfo.o [40/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZElimCompare.o [41/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyExceptionInfo.o [42/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVZilsdOptimizer.o [43/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZFrameLowering.o [44/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZInstrInfo.o [45/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcISelLowering.o [46/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyDebugValueManager.o [47/1294] CXX obj/llvm/lib/Target/RISCV/AsmParser/AsmParser.RISCVAsmParser.o [48/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVZacasABIFix.o [49/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVVSETVLIInfoAnalysis.o [50/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVVLOptimizer.o [51/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyCFGSort.o [52/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZISelDAGToDAG.o [53/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcTargetMachine.o [54/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZAsmPrinter.o [55/1294] CXX obj/llvm/lib/Target/WebAssembly/GISel/LLVMWebAssemblyCodeGen.WebAssemblyPostLegalizerCombiner.o [56/1294] CXX obj/llvm/lib/Target/WebAssembly/GISel/LLVMWebAssemblyCodeGen.WebAssemblyInstructionSelector.o [57/1294] CXX obj/llvm/lib/Target/WebAssembly/GISel/LLVMWebAssemblyCodeGen.WebAssemblyPreLegalizerCombiner.o [58/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZTargetMachine.o [59/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyAsmPrinter.o [60/1294] CXX obj/llvm/lib/Target/Sparc/LLVMSparcCodeGen.SparcTargetTransformInfo.o [61/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZTargetTransformInfo.o [62/1294] CXX obj/llvm/lib/Target/WebAssembly/LLVMWebAssemblyCodeGen.WebAssemblyCFGStackify.o [63/1294] CXX obj/llvm/lib/Target/RISCV/MCTargetDesc/MCTargetDesc.RISCVMCTargetDesc.o [64/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVTargetTransformInfo.o [65/1294] CXX obj/llvm/lib/Target/RISCV/LLVMRISCVCodeGen.RISCVTargetMachine.o [66/1294] CXX obj/llvm/lib/Target/SystemZ/LLVMSystemZCodeGen.SystemZISelLowering.o ninja: build stopped: subcommand failed. Command '['ninja', '-C', 'out/gn']' returned non-zero exit status 1.