[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.cdt] CDT6 - newline characters in console output

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