INFO:2026-02-24T09:19:43Z:root:pulling... From github.com:llvm/llvm-project * branch main -> FETCH_HEAD a84ee1416b6c..da1e0d9fcf5d 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 da1e0d9fcf5d [lldb][TypeSystemClang] Unconditionally set access control to AS_public (#182956) INFO:2026-02-24T09:19:46Z:root:syncing... Deleted branch merge (was f8885be0442b). Switched to a new branch 'merge' branch 'merge' set up to track 'origin/main'. [merge fb397daac1c2] [gn build] Port 796a1ea79f41 1 file changed, 2 insertions(+), 1 deletion(-) [merge 0bbd82cd1b81] [gn build] Port 8bdef33e6ae9 2 files changed, 7 insertions(+) [merge 3cead9fc7c00] [gn build] Port a8989c08a87e 1 file changed, 1 insertion(+), 1 deletion(-) [merge eabcd990c45e] [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-24T09:19:51Z:root:building ninja: Entering directory `out/gn' [0/1] Regenerating ninja files [1/1078] LINK ./bin/llvm-ifs [2/1078] LINK ./bin/sanstats [3/1078] 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. [4/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCMachineScheduler.o [5/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCMacroFusion.o [6/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCMCInstLower.o [7/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCLowerMASSVEntries.o [8/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCPreEmitPeephole.o [9/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCPrepareIFuncsOnAIX.o [10/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCMIPeephole.o [11/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangUtil.o [12/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangExternalASTSourceCallbacks.o [13/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.Coroutines.o [14/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCLoopInstrFormPrep.o [15/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.GenericOptional.o [16/1078] CXX obj/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.AppleObjCDeclVendor.o [17/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.NSError.o [18/1078] CXX obj/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.AppleObjCRuntimeV1.o [19/1078] CXX obj/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.AppleObjCTypeEncodingParser.o [20/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCInstrInfo.o [21/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.LibStdcpp.o [22/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.CF.o [23/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.LibCxxMap.o [24/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.GenericBitset.o [25/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.CxxStringTypes.o [26/1078] CXX obj/lldb/source/Plugins/Platform/Linux/Linux.PlatformLinux.o [27/1078] CXX obj/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/MacOSX-DYLD.DynamicLoaderMacOS.o [28/1078] CXX obj/lldb/source/Plugins/Platform/POSIX/POSIX.PlatformPOSIX.o [29/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.LibCxx.o [30/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.NSException.o [31/1078] CXX obj/lldb/source/Plugins/Platform/Windows/Windows.PlatformWindows.o [32/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.LibCxxUnorderedMap.o [33/1078] CXX obj/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/MacOSX-DYLD.DynamicLoaderMacOSXDYLD.o [34/1078] CXX obj/lldb/source/Plugins/LanguageRuntime/ObjC/ObjC.ObjCLanguageRuntime.o [35/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.NSIndexPath.o [36/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.NSArray.o [37/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.NSSet.o [38/1078] CXX obj/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.AppleObjCRuntime.o [39/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.Cocoa.o [40/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.NSDictionary.o [41/1078] CXX obj/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABI.ItaniumABILanguageRuntime.o [42/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangPersistentVariables.o [43/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.NameSearchContext.o [44/1078] CXX obj/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.AppleObjCTrampolineHandler.o [45/1078] CXX obj/lldb/source/Plugins/Language/ObjC/ObjC.ObjCLanguage.o [46/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangUtilityFunction.o [47/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.CxxModuleHandler.o [48/1078] CXX obj/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/MacOSX-DYLD.DynamicLoaderDarwin.o [49/1078] CXX obj/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.AppleObjCRuntimeV2.o [50/1078] CXX obj/lldb/source/Plugins/Language/CPlusPlus/CPlusPlus.BlockPointer.o [51/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ASTResultSynthesizer.o [52/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.IRForTarget.o [53/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangASTSource.o [54/1078] CXX obj/lldb/source/Plugins/SymbolFile/NativePDB/NativePDB.UdtRecordCompleter.o [55/1078] CXX obj/lldb/source/Plugins/SymbolFile/PDB/PDB.PDBASTParser.o [56/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangUserExpression.o [57/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangASTImporter.o [58/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangFunctionCaller.o [59/1078] CXX obj/lldb/source/Plugins/SymbolFile/NativePDB/NativePDB.PdbAstBuilderClang.o [60/1078] CXX obj/lldb/source/Plugins/SymbolFile/PDB/PDB.SymbolFilePDB.o [61/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangModulesDeclVendor.o [62/1078] CXX obj/llvm/lib/Target/PowerPC/LLVMPowerPCCodeGen.PPCISelLowering.o [63/1078] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFASTParserClang.o [64/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangExpressionDeclMap.o [65/1078] CXX obj/lldb/source/Plugins/ExpressionParser/Clang/Clang.ClangExpressionParser.o [66/1078] CXX obj/lldb/source/Plugins/SymbolFile/NativePDB/NativePDB.SymbolFileNativePDB.o [67/1078] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.SymbolFileDWARF.o [68/1078] CXX obj/lldb/source/Plugins/TypeSystem/Clang/Clang.TypeSystemClang.o ninja: build stopped: subcommand failed. Command '['ninja', '-C', 'out/gn']' returned non-zero exit status 1.