I want to get all of compile error message list of gcc about C language.
Martin Sebor
msebor@gmail.com
Mon May 16 17:15:00 GMT 2016
On 05/16/2016 12:31 AM, ì íì wrote:
> Dear GCC.
>
> Hello. I'm student of Dankook University in South Korea.
> I'm studying about C compiler for increasing software quality.
> So I want to get all of compile error message list of gcc about C language.
> I was trying to find it. But I can't find it anywhere.
> Only I can get part of it.
As Jonathan already said, the messages are in the source code
itself. You can either grep GCC sources for them, or you can
view the gcc.pot file generated from the GCC sources by the
Translation Project. The file and its translations into
various languages are stored in the GCC repository here:
https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/po
Many of the messages are likely to only make sense in the context
of the program they are issued for and the compiler options used
to compiler it, and not so much on their own.
Martin
More information about the Gcc-help
mailing list