[Lldb-commits] [lldb] [lldb] Make it so not finding and SDK doesn't look like an error (PR #166676)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 6 11:37:32 PST 2025
================
@@ -53,7 +53,7 @@ void PlatformRemoteDarwinDevice::GetStatus(Stream &strm) {
if (sdk_directory)
strm.Printf(" SDK Path: \"%s\"\n", sdk_directory);
else
- strm.PutCString(" SDK Path: error: unable to locate SDK\n");
+ strm.PutCString(" SDK Path: <unable to locate SDK>\n");
----------------
adrian-prantl wrote:
we shouldn't be printing the string `error:` manually anyway...
https://github.com/llvm/llvm-project/pull/166676
More information about the lldb-commits
mailing list