This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: patch for PR 14882 (gcc 3.4.0 won't build with a non-gcc compiler)
On Wed, Apr 07, 2004 at 03:49:30PM -0400, Jakub Jelinek wrote:
> intl/config.h.in has:
>
> /* Define as __inline if that's what the C compiler calls it. */
> #undef inline
>
> and intl/configure makes sure it is properly defined.
Apparently not (at least on HP).
I get
/* #undef inline */
in intl/config.h , but
#define inline
in gcc/auto-host.h .
Here is the bizarre output of
grep 'for inline' LOG
on the output of make bootstrap-lean:
checking for inline... no
checking for inline... inline
checking for inline... no
It tests three times, one time it decides we can do inline. I don't know
why yet.