From: Greg Clayton Date: Sat, 29 Jun 2013 00:10:32 +0000 (+0000) Subject: Fixed SBProcess::RemoteLaunch() to use the platform executable path. Patch from Sebas... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=14715c68f24f3ee2d16fd7cc423b264090f9f571;p=platform%2Fupstream%2Fllvm.git Fixed SBProcess::RemoteLaunch() to use the platform executable path. Patch from Sebastien Metrot. llvm-svn: 185245 --- diff --git a/lldb/source/API/SBProcess.cpp b/lldb/source/API/SBProcess.cpp index d41ad61..259eb5e 100644 --- a/lldb/source/API/SBProcess.cpp +++ b/lldb/source/API/SBProcess.cpp @@ -173,7 +173,7 @@ SBProcess::RemoteLaunch (char const **argv, launch_flags); Module *exe_module = process_sp->GetTarget().GetExecutableModulePointer(); if (exe_module) - launch_info.SetExecutableFile(exe_module->GetFileSpec(), true); + launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true); if (argv) launch_info.GetArguments().AppendArguments (argv); if (envp)