On Fri, Aug 24, 2012 at 08:30:36AM -0400, Diego Novillo wrote: > On 2012-08-23 16:54 , Mike Stump wrote: > >On Aug 12, 2012, at 1:04 PM, Diego Novillo wrote: > >>Other than the bootstrap change, the patches make no functional > >>changes to the compiler. Everything should build as it does now in > >>trunk. > > > >In my gcc/Makefile, I see: > > > >CFLAGS = -g CXXFLAGS = -g -O2 > > Odd. I see: > > CFLAGS = -g > CXXFLAGS = -g > > in stage1-gcc/ > > In gcc/ I see both set to -g -O2, of course. I would've noticed -g > -O2 in the stage1 build because I am constantly debugging that > binary.
You haven't built your compiler with --disable-bootstrap, so you aren't seeing what Mike is complaining about. Jakub