From: Igor Kulaychuk Date: Thu, 1 Feb 2018 13:15:48 +0000 (+0300) Subject: Always enable stopAtEntry when launching through MI protocol X-Git-Tag: submit/tizen/20180620.071641~24^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b125493d5d7b59c7afe1503c418c39a4044a8bf;p=sdk%2Ftools%2Fnetcoredbg.git Always enable stopAtEntry when launching through MI protocol --- diff --git a/src/debug/netcoredbg/miprotocol.cpp b/src/debug/netcoredbg/miprotocol.cpp index 0e2ef74..a290260 100644 --- a/src/debug/netcoredbg/miprotocol.cpp +++ b/src/debug/netcoredbg/miprotocol.cpp @@ -750,7 +750,7 @@ HRESULT MIProtocol::HandleCommand(std::string command, { "exec-run", [this](const std::vector &args, std::string &output) -> HRESULT { HRESULT Status; m_debugger->Initialize(); - IfFailRet(m_debugger->Launch(m_fileExec, m_execArgs)); + IfFailRet(m_debugger->Launch(m_fileExec, m_execArgs, true)); Status = m_debugger->ConfigurationDone(); if (SUCCEEDED(Status)) output = "^running";