diff options
Diffstat (limited to 'lldb/source/Host/macosx')
| -rw-r--r-- | lldb/source/Host/macosx/Host.mm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Host/macosx/Host.mm b/lldb/source/Host/macosx/Host.mm index c70769d8292..57be7d862d7 100644 --- a/lldb/source/Host/macosx/Host.mm +++ b/lldb/source/Host/macosx/Host.mm @@ -1356,13 +1356,13 @@ Host::ShellExpandArguments (ProcessLaunchInfo &launch_info) FileSpec expand_tool_spec; if (!HostInfo::GetLLDBPath(lldb::ePathTypeSupportExecutableDir, expand_tool_spec)) { - error.SetErrorString("could not get support executable directory for argdumper tool"); + error.SetErrorString("could not get support executable directory for lldb-argdumper tool"); return error; } - expand_tool_spec.AppendPathComponent("argdumper"); + expand_tool_spec.AppendPathComponent("lldb-argdumper"); if (!expand_tool_spec.Exists()) { - error.SetErrorStringWithFormat("could not find argdumper tool: %s", expand_tool_spec.GetPath().c_str()); + error.SetErrorStringWithFormat("could not find the lldb-argdumper tool: %s", expand_tool_spec.GetPath().c_str()); return error; } @@ -1375,7 +1375,7 @@ Host::ShellExpandArguments (ProcessLaunchInfo &launch_info) if (status != 0) { - error.SetErrorStringWithFormat("argdumper exited with error %d", status); + error.SetErrorStringWithFormat("lldb-argdumper exited with error %d", status); return error; } |

