This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: failure on alphaev5-unknown-linux-gnulibc1
- To: Cotton Seed <cottons at concmp dot com>
- Subject: Re: failure on alphaev5-unknown-linux-gnulibc1
- From: Richard Henderson <rth at cygnus dot com>
- Date: Wed, 1 Oct 1997 23:27:07 -0700
- Cc: egcs at cygnus dot com
- References: <19971001215616.12232.qmail@concmp.com>
On Wed, Oct 01, 1997 at 09:56:16PM -0000, Cotton Seed wrote:
> In file included from iogetc.c:26:
> libioP.h:31: bits/libc-lock.h: No such file or directory
Yeah, I believe that Ulrich is still in the process of merging
his current stuff. At the moment I skip all that nonsense and
just build in the gcc subdirectory.
But the fix will be something along these lines:
#ifdef __GLIBC__
#ifdef __GLIBC_MINOR__ == 0
#include <libc-lock.h>
#else
#include <bits/libc-lock.h>
#endif
#endif
r~