This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Bootstrap fails on alpha
- To: gcc-bugs at gcc dot gnu dot org
- Subject: Bootstrap fails on alpha
- From: Brad Lucier <lucier at math dot purdue dot edu>
- Date: Sat, 2 Dec 2000 01:31:02 -0500 (EST)
- Cc: lucier at math dot purdue dot edu (Brad Lucier)
First problem:
../../gcc/c-common.c: In function `c_common_nodes_and_builtins':
../../gcc/c-common.c:4968: `PTRDIFF_TYPE' undeclared (first use in this function)
../../gcc/c-common.c:4968: (Each undeclared identifier is reported only once
../../gcc/c-common.c:4968: for each function it appears in.)
make[2]: *** [c-common.o] Error 1
make[2]: Leaving directory `/export/u11/lucier/programs/gcc/objdir/gcc'
So I try to fix it as in c-decl.c by adding:
#ifndef PTRDIFF_TYPE
#define PTRDIFF_TYPE "long int"
#endif
Second problem: Something to do with fixincl.c, but I can't reproduce it now.
Brad Lucier