From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zack Weinberg To: John David Anglin Cc: gcc-patches@gcc.gnu.org, gcc-bugs@gcc.gnu.org Subject: Re: VAX Ultrix bootstrap failure with gcc-2.96 Date: Thu, 25 May 2000 20:33:00 -0000 Message-id: <20000525203330.Y3314@wolery.cumb.org> References: <20000525193543.W3314@wolery.cumb.org> <200005260305.XAA11216@hiauly1.hia.nrc.ca> X-SW-Source: 2000-05/msg01437.html On Thu, May 25, 2000 at 11:05:14PM -0400, John David Anglin wrote: > > > Another small related issue is that gcc should define __GFLOAT > > > in addition to GFLOAT when the -mg option is used. I have edited > > > my specs file to do this. > > > > Patch for config/vax/*.h, please? > > See below. ... > +#define CPP_SPEC "%{mg:-DGFLOAT -D__GFLOAT}" Thanks - I wasn't sure if this was the only place affected. It needs an additional test to get rid of -DGFLOAT in -ansi mode: #define CPP_SPEC "%{mg:%{!ansi:-DGFLOAT} -D__GFLOAT}" I will apply your patch with this change. zw