This is the mail archive of the gcc@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]

Re: bootstraps broken during last 24 hours


Robert Lipe propounded (on Fri, Jan 05, 2001 at 05:46:38PM -0600):
| [ Resent becuase ORBS/DUL ate it the first time ] 
| 
| 
| I've edited out config/* and library changes from the CVS log that
| are exonerated, but one of the following commits broke bootstrap on
| i686-pc-sco3.2v5.0.6 and i686-pc-udk.  Both targets made it past this
| stage yesterday.

I just did a successful bootstrap for i686-pc-sco3.2v5.0.6 using this
script:


	#!/bin/sh
	CFLAGS=
	CXXFLAGS=
	CC=/bin/cc
	export CFLAGS CXXFLAGS CC

	cd /s/tools/gccobj
	rm -fr ./*
	/s/tools/gcc/configure --enable-languages=c

	make bootstrap

Note that I didn't specify BOOT_CFLAG=-O2 .

And I also just did a suuccessful bootstrap for i686-pc-udk using
this script:


	#!/bin/sh
	CFLAGS=-Xb
	CXXFLAGS=
	CC=/udk/usr/ccs/bin/cc
	export CFLAGS CXXFLAGS CC 

	cd /s/tools/gccudkobj
	rm -fr ./*
	/s/tools/gcc/configure --host=i686-pc-udk \
	      --exec-prefix=/u/udk --enable-languages=c

	make bootstrap

I added the -Xb because, without it, I was getting a complaint from the
UDK:

/udk/usr/ccs/bin/cc  -DIN_GCC -g  -DHAVE_CONFIG_H  -I. -I.  -I/s/tools/gcc/gcc -I/s/tools/gcc/gcc/. -I/s/tools/gcc/gcc/config -I/s/tools/gcc/gcc/../include -c /s/tools/gcc/gcc/c-parse.c
UX:acomp: ERROR: "c-parse.y", line 2401: "inline" functions cannot use "static" identifier: last_token
UX:acomp: ERROR: "c-parse.y", line 2403: "inline" functions cannot use "static" identifier: last_token
UX:acomp: ERROR: "c-parse.y", line 2468: "inline" functions cannot use "static" identifier: rid_to_yy
UX:acomp: ERROR: "c-parse.y", line 2544: "inline" functions cannot use "static" identifier: last_token


This is probably the first time in eight months that I've been able
to build both of these targets on the same day.

-- 
JP

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