forked from OSchip/llvm-project
Make SBTarget::Launch() respect the stop_at_entry argument.
Patch by Ilia K Differential Revision: http://reviews.llvm.org/D7271 llvm-svn: 227833
This commit is contained in:
parent
6ff7ed6446
commit
6fd3f34d1f
|
@ -729,6 +729,9 @@ SBTarget::Launch
|
|||
{
|
||||
Mutex::Locker api_locker (target_sp->GetAPIMutex());
|
||||
|
||||
if (stop_at_entry)
|
||||
launch_flags |= eLaunchFlagStopAtEntry;
|
||||
|
||||
if (getenv("LLDB_LAUNCH_FLAG_DISABLE_ASLR"))
|
||||
launch_flags |= eLaunchFlagDisableASLR;
|
||||
|
||||
|
|
Loading…
Reference in New Issue