https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/161731
The cpp file fails to compile without `lld-link`. >From 315eca0cd9d2dd2dccea5ebd552e248c81fbafc3 Mon Sep 17 00:00:00 2001 From: Alex Langford <[email protected]> Date: Thu, 2 Oct 2025 13:37:45 -0700 Subject: [PATCH] [lldb] Add lld requirement to NativePDB test The cpp file fails to compile without `lld-link`. --- lldb/test/Shell/SymbolFile/NativePDB/symtab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/Shell/SymbolFile/NativePDB/symtab.cpp b/lldb/test/Shell/SymbolFile/NativePDB/symtab.cpp index 81d643d9572d8..beb5ae2f90256 100644 --- a/lldb/test/Shell/SymbolFile/NativePDB/symtab.cpp +++ b/lldb/test/Shell/SymbolFile/NativePDB/symtab.cpp @@ -1,4 +1,4 @@ -// REQUIRES: x86 +// REQUIRES: lld, x86 // Test symtab reading // RUN: %build --compiler=clang-cl --arch=64 --nodefaultlib -o %t.exe -- %s _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
