This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Bootstrap failure and patch for gcc version 2.96 20000303
- To: gcc-bugs at gcc dot gnu dot org
- Subject: Bootstrap failure and patch for gcc version 2.96 20000303
- From: Daniel Lauer <daniel at informatik dot uni-bonn dot de>
- Date: Fri, 3 Mar 2000 12:12:14 +0100 (CET)
- cc: Andre Weilert <weilert at pi dot informatik dot uni-bonn dot de>
Hi,
jason's revision 1.61 of gcc/cpplib.h changes
the definition of CPP_PENDANTIC(PFILE),
with the side effet of being no l-value any more.
Therefore the lines
cppinit.c:1199: CPP_PEDANTIC (pfile) = 1;
cppinit.c:1202: CPP_PEDANTIC (pfile) = 1;
have to be changed to
cppinit.c:1199: SET_CPP_PEDANTIC (pfile);
cppinit.c:1202: SET_CPP_PEDANTIC (pfile);
because bootstrap fails otherwise.
Andre Weilert,
Daniel Lauer