[Lldb-commits] [lldb] [lldb][test] Don't run libc++ API tests without a locally built libc++ (PR #162657)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 10 05:11:43 PDT 2025
================
@@ -789,6 +789,10 @@ def canRunLibcxxTests():
return True, "libc++ always present"
if platform == "linux":
+ if not configuration.libcxx_include_dir or not configuration.libcxx_library_dir:
+ return False, "API tests require a locally built libc++."
----------------
DavidSpickett wrote:
This gets printed somewhere right? I forget where it appears.
https://github.com/llvm/llvm-project/pull/162657
More information about the lldb-commits
mailing list