This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: GCC 3.4.0 fails to boot with a non-GCC C compiler
On Wed, Apr 07, 2004 at 12:30:32PM -0700, Richard Henderson wrote:
> On Wed, Apr 07, 2004 at 12:01:53PM -0700, Joe Buck wrote:
> > No, it's only those two files; the stage1 build completes if I add
> >
> > #ifndef __GNUC__
> > #define inline /* nothing */
> > #endif
> >
> > to both of those files.
>
> Configure is supposed to have figured this out itself.
> You should look at config.log and figure out what went wrong.
configure correctly detects that the compiler does not support "inline".
And, in fact, the generated auto-host.h has
#define inline
But this header is not included when the intl directory is compiled.
So it's not gcc itself that fails to compile, but a library.