[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.tools.cdt] CDT6 - newline characters in console output
|
- From: pts001@xxxxxxxxx (Peter Saunders)
- Date: Wed, 5 Aug 2009 13:39:43 +0000 (UTC)
- Newsgroups: eclipse.tools.cdt
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
Hi
I have just upgraded to Galileo CDT6 on Linux x86 and note that newline
characters in application output are now being echoed to the application
console literally when using the CDI "gdbserver Debugger". For example, the
output from the following code:
printf("line1\nline2\n");
Is seen as:
line1\nline2\n
rather than:
line1
line2
The GDB/MI traffic when stepping over this code is:
(gdb)
*running, .......
@"line1\n"
@"line2\n"
*stopped, .......
(gdb)
I've found one other report of this issue:
http://www.nabble.com/application-console-in-Galileo-td24757896.html
Is this a regression?
Peter Saunders