[Bug other/19165] (Natural) language independent error / warning classification

fuscated at gmail dot com gcc-bugzilla@gcc.gnu.org
Wed Jan 30 12:14:00 GMT 2013


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19165

Teodor Petrov <fuscated at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fuscated at gmail dot com

--- Comment #15 from Teodor Petrov <fuscated at gmail dot com> 2013-01-30 12:13:52 UTC ---
I'm speaking as one of Code::Blocks' developers:
If you implement this we'll for sure use it, because we have many complaints
similar to the one Eclipse's developers have. 

(After one such complaint I've found this bug, by the way).

Some suggestions: 
Don't pack the line/column info with the file name, if possible.
So the proposed diagnostic from this:
<diagnostic class="error"
location="/home/manuel/src/test/gcc/testsuite/gcc.dg/array-2.c:10:8">
inicializaci�n de un miembro de matriz flexible en un contexto anidado
</diagnostic>

will turn in to this, which will be easier to parse:
<diagnostic class="error"
location="/home/manuel/src/test/gcc/testsuite/gcc.dg/array-2.c" line="10"
column="8">
inicializaci�n de un miembro de matriz flexible en un contexto anidado
</diagnostic>

Also, if it is possible group the notes/instances info with the error/warning
messages. This way it will allows us to show the information in a better way.



More information about the Gcc-bugs mailing list