summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/macosx
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2015-10-29 05:07:12 +0000
committerTodd Fiala <todd.fiala@gmail.com>2015-10-29 05:07:12 +0000
commit15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86 (patch)
treea80353ceaea4d5405bfa49cb0e8731057589b59d /lldb/source/Host/macosx
parentf2f194455fba1308f30545c6dce4854f207f83b3 (diff)
downloadbcm5719-llvm-15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86.tar.gz
bcm5719-llvm-15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86.zip
Rename argdumper to lldb-argdumper
http://reviews.llvm.org/D14169 llvm-svn: 251616
Diffstat (limited to 'lldb/source/Host/macosx')
-rw-r--r--lldb/source/Host/macosx/Host.mm8
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;
}
OpenPOWER on IntegriCloud