This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Bootstrap failure and patch for gcc version 2.96 20000303



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




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]