LazDebugger, lldb: fix process launch

git-svn-id: trunk@58886 -
This commit is contained in:
martin 2018-09-06 01:45:03 +00:00
parent 362a579f9c
commit d4437e704c

View File

@ -652,12 +652,12 @@ end;
function TLldbInstructionProcessLaunch.ProcessInputFromDbg(const AData: String
): Boolean;
begin
Result := True;
if StrStartsWith(AData, 'Process ') and (pos(' launched:', AData) > 8) then begin
SetContentReceieved;
end
else
Result := inherited;
Result := True; // Ignore any "process stopped", before "launched"
end;
constructor TLldbInstructionProcessLaunch.Create();