This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: GCC Manual for Warnings & Errors
- To: pfrancq at ulb dot ac dot be
- Subject: Re: GCC Manual for Warnings & Errors
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Tue, 11 Jan 2000 22:31:14 +0100
- CC: gcc at gcc dot gnu dot org
- References: <00010712113800.01016@mecapp97.ulb.ac.be>
> Is there somewhere a document that describes all the warnings and
> errors generated by the GCC compiler ?
Currently, no. You can create a list of all warnings and errors
generated by doing "grep warning *.c", "grep error *.c" in the gcc
sources (you'd need to search for other function names and in
subdirectories if you are interested in C++, Java, or Fortran as
well). With those list, you could go through all the messages and
document them. That would be a valuable addition to the documentation,
IMHO. If you do come up with documentation on that matter, please
submit it to gcc-patches@gcc.gnu.org when you are done :-)
If you are not really interested in a complete list, but want to know
the meaning of a specific message, please ask in more detail.
Regards,
Martin