1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00
This commit is contained in:
Alain Magloire 2003-07-08 15:44:54 +00:00
parent bbddb0d592
commit 9faa3cf7a9

View file

@ -1,3 +1,23 @@
2003-07-08 Alain Magloire
Unfortunately GDB/MI does not make the errors available via the advertise
way explain in the documentation, for example:
27-var-create - * this->aaa
&"There is no member or method named aaa.\n"
&"Type Hello has no component named aaa.\n"
27^error,msg="."
According to the doc, the error should be available in the msg field:
27^error,msg="There is no member or method named aaaa"
Since this will not be fix in GDB/MI anytime soon, we cope with it by
grabing the logstream error and make it available in
CDIException.getDetailedMesssage().
src/org/eclipse/cdt/debug/mi/core/command/*.java: All the commands
changed to grab also the logstream messages if any for the exception.
2003-06-25 Alain Magloire
Patch from Chris Songer, excerpt from its email: