This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Error and Warning messages
- To: troll at tnet dot com dot au
- Subject: Re: Error and Warning messages
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Fri, 14 Jul 2000 09:53:16 +0200
- CC: gcc at gcc dot gnu dot org
- References: <Pine.LNX.4.10.10007141118290.309-100000@cube.loop.com>
> Does anyone know where i can get a list of the various compile and link
> error and warning messages produced and what they mean?
Please have a look at the section "Invoking gcc" of the gcc manual.
> I keep getting this at link time and would like to know what it means.
>
> dict.o: warning: multiple common of `QList<QString> type_info node'
> kwordz.o: warning: previous common is here
That may be a bug in gcc, or a bug in the linker, which does not deal
with "common" symbols properly. In any case, it is not a warning
emitted by the compiler; it comes from the linker.
Regards,
Martin