Allow clients to control the exact path that is used to launch processes by adding new calls to SBLaunchInfo.
The new calls are:
SBFileSpec
SBLaunchInfo::GetExecutableFile ();
void
SBLaunchInfo::SetExecutableFile (SBFileSpec exe_file, bool add_as_first_arg);
<rdar://problem/16833939>
llvm-svn: 208245
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i
index 87d5c5b..1f697ba 100644
--- a/lldb/scripts/Python/interface/SBTarget.i
+++ b/lldb/scripts/Python/interface/SBTarget.i
@@ -32,6 +32,12 @@
void
SetGroupID (uint32_t gid);
+ lldb::SBFileSpec
+ GetExecutableFile ();
+
+ void
+ SetExecutableFile (lldb::SBFileSpec exe_file, bool add_as_first_arg);
+
uint32_t
GetNumArguments ();