INFO:2026-02-23T20:17:03Z:root:pulling... From github.com:llvm/llvm-project * branch main -> FETCH_HEAD 8910926363b0..ed6cd322dec5 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 ed6cd322dec5 [bazel][Clang][AMDGPU][Docs] Port e6f30334de720b0473f1d797c008ccf74fb300b8 (#182925) INFO:2026-02-23T20:17:05Z:root:syncing... Deleted branch merge (was 1aa68f166483). Switched to a new branch 'merge' branch 'merge' set up to track 'origin/main'. [merge b069bc5133bf] [gn build] Port 796a1ea79f41 1 file changed, 2 insertions(+), 1 deletion(-) [merge cbb3f8b152cc] [gn build] Port 8bdef33e6ae9 2 files changed, 7 insertions(+) [merge 9c9f18d9c68f] [gn build] Port a8989c08a87e 1 file changed, 1 insertion(+), 1 deletion(-) [merge 4f6d063acb7d] [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-23T20:17:10Z:root:building ninja: Entering directory `out/gn' [0/1] Regenerating ninja files [1/802] AR lib/libclangSema.a [2/802] LINK ./bin/clang-apply-replacements [3/802] LINK obj/clang-tools-extra/unittests/clang-apply-replacements/ClangApplyReplacementsTests [4/802] AR lib/libclangDriver.a [5/802] 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. [6/802] LINK ./bin/clang-import-test [7/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextLinuxCore_x86.o [8/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_loongarch64.o [9/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_s390x.o [10/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_powerpc.o [11/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_riscv64.o [12/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_riscv32.o [13/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_ppc64le.o [14/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_arm.o [15/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_x86.o [16/802] CXX obj/lldb/source/Plugins/SymbolFile/PDB/PDB.PDBLocationToDWARFExpression.o [17/802] CXX obj/lldb/source/Plugins/SymbolFile/Symtab/Symtab.SymbolFileSymtab.o [18/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFAttribute.o [19/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFDebugMacro.o [20/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFFormValue.o [21/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_arm.o [22/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFTypeUnit.o [23/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_loongarch64.o [24/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_s390x.o [25/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_riscv64.o [26/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_arm64.o [27/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_riscv32.o [28/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_powerpc.o [29/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_ppc64le.o [30/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFCompileUnit.o [31/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextMemory.o [32/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextPOSIX_x86.o [33/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.NameToDIE.o [34/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextHistory.o [35/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.AppleDWARFIndex.o [36/802] CXX obj/lldb/source/Plugins/Process/minidump/minidump.ThreadMinidump.o [37/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFDebugInfo.o [38/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextDummy.o [39/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.ThreadMemory.o [40/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFDebugAranges.o [41/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.RegisterContextThreadMemory.o [42/802] CXX obj/lldb/source/Plugins/Process/gdb-remote/gdb-remote.ProcessGDBRemoteLog.o [43/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFBaseDIE.o [44/802] CXX obj/lldb/source/Plugins/Process/gdb-remote/gdb-remote.ThreadGDBRemote.o [45/802] CXX obj/lldb/source/Plugins/Process/mach-core/mach-core.RegisterContextUnifiedCore.o [46/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFDebugInfoEntry.o [47/802] CXX obj/lldb/source/Plugins/Process/Utility/Utility.StopInfoMachException.o [48/802] CXX obj/lldb/source/Plugins/REPL/Clang/Clang.ClangREPL.o [49/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.RegisterContextPOSIXCore_arm64.o [50/802] CXX obj/lldb/source/Plugins/Process/gdb-remote/gdb-remote.GDBRemoteCommunication.o [51/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFASTParser.o [52/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DebugNamesDWARFIndex.o [53/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFDIE.o [54/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.ThreadElfCore.o [55/802] CXX obj/lldb/source/Plugins/SymbolLocator/Default/Default.SymbolLocatorDefault.o [56/802] CXX obj/lldb/source/Plugins/SymbolFile/NativePDB/NativePDB.PdbUtil.o [57/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFUnit.o [58/802] CXX obj/lldb/source/Plugins/ScriptInterpreter/None/None.ScriptInterpreterNone.o [59/802] CXX obj/lldb/source/Plugins/Process/mach-core/mach-core.ProcessMachCore.o [60/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFIndex.o [61/802] CXX obj/lldb/source/Plugins/SymbolFile/Breakpad/Breakpad.SymbolFileBreakpad.o [62/802] CXX obj/lldb/source/Plugins/Process/elf-core/elf-core.ProcessElfCore.o [63/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.SymbolFileDWARFDebugMap.o [64/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.ManualDWARFIndex.o [65/802] CXX obj/lldb/source/Plugins/Process/gdb-remote/gdb-remote.GDBRemoteCommunicationClient.o [66/802] CXX obj/lldb/source/Plugins/SymbolFile/NativePDB/NativePDB.UdtRecordCompleter.o [67/802] CXX obj/lldb/source/Plugins/SymbolFile/PDB/PDB.SymbolFilePDB.o [68/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.DWARFASTParserClang.o [69/802] CXX obj/lldb/source/Plugins/SymbolFile/NativePDB/NativePDB.SymbolFileNativePDB.o [70/802] CXX obj/lldb/source/Plugins/SymbolFile/DWARF/DWARF.SymbolFileDWARF.o ninja: build stopped: subcommand failed. Command '['ninja', '-C', 'out/gn']' returned non-zero exit status 1.