Added the ability to disable ASLR (Address Space Layout Randomization). ASLR
is disabled by default, and can be enabled using:

(lldb) set disable-aslr 0



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@112616 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBTarget.cpp b/source/API/SBTarget.cpp
index c863bc7..6c55c68 100644
--- a/source/API/SBTarget.cpp
+++ b/source/API/SBTarget.cpp
@@ -121,6 +121,7 @@
     char const **argv,
     char const **envp,
     const char *tty,
+    uint32_t launch_flags,
     bool stop_at_entry
 )
 {
@@ -129,7 +130,7 @@
         process = CreateProcess();
     if (process.IsValid())
     {
-        Error error (process->Launch (argv, envp, tty, tty, tty));
+        Error error (process->Launch (argv, envp, launch_flags, tty, tty, tty));
         if (error.Success())
         {
             if (!stop_at_entry)