Skip to content

Commit 6fd3f34

Browse files
author
Zachary Turner
committedFeb 2, 2015
Make SBTarget::Launch() respect the stop_at_entry argument.
Patch by Ilia K Differential Revision: http://reviews.llvm.org/D7271 llvm-svn: 227833
1 parent 6ff7ed6 commit 6fd3f34

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎lldb/source/API/SBTarget.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,9 @@ SBTarget::Launch
729729
{
730730
Mutex::Locker api_locker (target_sp->GetAPIMutex());
731731

732+
if (stop_at_entry)
733+
launch_flags |= eLaunchFlagStopAtEntry;
734+
732735
if (getenv("LLDB_LAUNCH_FLAG_DISABLE_ASLR"))
733736
launch_flags |= eLaunchFlagDisableASLR;
734737

0 commit comments

Comments
 (0)