document issue about GDB/MI output syntax
asmwarrior <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi, I just found in this page:
https://sourceware.org/gdb/current/onlinedocs/gdb/GDB_002fMI-Output-Syntax.html#GDB_002fMI-Output-Syntax
The syntax is not correct:
console-stream-output ==>
"~" c-string
target-stream-output ==>
"@" c-string
log-stream-output ==>
"&" c-string
It should be:
console-stream-output ==>
"~" c-string nl
target-stream-output ==>
"@" c-string nl
log-stream-output ==>
"&" c-string nl
There is a "nl" missing in those stream-record, right?
Thanks
Yuanhui Zhang