We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8950830 + d2c322f commit 560b24aCopy full SHA for 560b24a
src/MICore/Debugger.cs
@@ -1253,10 +1253,10 @@ public void ProcessStdOutLine(string line)
1253
{
1254
WaitingOperationDescriptor waitingOperation;
1255
if (_waitingOperations.TryGetValue(id, out waitingOperation) &&
1256
- !waitingOperation.EchoReceived &&
1257
line == waitingOperation.Command)
1258
1259
// This is just the echo. Ignore.
+ // Sometimes with lldb we are seeing 2 command echos
1260
waitingOperation.EchoReceived = true;
1261
return;
1262
}
@@ -1267,6 +1267,7 @@ public void ProcessStdOutLine(string line)
1267
switch (c)
1268
1269
case '~':
1270
+ case '@':
1271
OnDebuggeeOutput(noprefix); // Console stream
1272
break;
1273
case '^':
0 commit comments