This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: warning: .../O0g.gch: not used because `__NO_INLINE__' not defined
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: Paolo Carlini <pcarlini at suse dot de>
- Cc: libstdc++ at gcc dot gnu dot org
- Date: Wed, 5 Jul 2006 10:59:22 -0500
- Subject: Re: warning: .../O0g.gch: not used because `__NO_INLINE__' not defined
- References: <44AA98CC.7080601@suse.de>
> /home/paolo/Gcc/svn-dirs/trunk-build/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu/bits/stdc++.h.gch/O0g.gch:
> not used because `__NO_INLINE__' not defined
>
> any idea what's going wrong?
-Winvalid-pch is complaining about this pch, since it is the debug pch
(ie compiled with -O0). The next pch is selected in this case (the one
with -O2).
I'll turn off -Winvalid pch when building, I guess, and look at the rest of this stuff.
-benjamin