Re: gperf broken - breaks buildworld

2002-05-22 Thread David W. Chapman Jr.

On Wed, May 22, 2002 at 12:30:29PM -0400, Callum M. Duncan wrote:
 Kent,
 
 I do not have anything specified for CFLAGS in /etc/make.conf
 therefore it should use the defaults/make.conf entry right?
 
 #CFLAGS= -O -pipe
 
 Hmmm...
 
 I will see if I can try a build on another box I run.
 cheers,
 Callum

gperf is broken because libstdc++(which gperf depends on) is broken.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-stable in the body of the message



Re: gperf broken - breaks buildworld

2002-05-22 Thread David W. Chapman Jr.

Oh, I just noticed this was posted to -stable, I thought it was posted
to -current

it should work on -stable then.  Sorry for the spam.

- Original Message -
From: Rahul Siddharthan [EMAIL PROTECTED]
To: David W. Chapman Jr. [EMAIL PROTECTED]
Cc: Callum M. Duncan [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, May 22, 2002 12:43 PM
Subject: Re: gperf broken - breaks buildworld


 David W. Chapman, Jr. wrote:
  gperf is broken because libstdc++(which gperf depends on) is broken.

 I thought that was -current, not -stable?

 - Rahul



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-stable in the body of the message



Re: gperf broken - breaks buildworld

2002-05-22 Thread Kent Stewart



David W. Chapman Jr. wrote:

 Oh, I just noticed this was posted to -stable, I thought it was posted
 to -current
 
 it should work on -stable then.  Sorry for the spam.
 


I couldn't find libgp.a in my buildworld logs. You may of hit the 
solution. I wonder if Callum cvsuped -current.

Kent


 - Original Message -
 From: Rahul Siddharthan [EMAIL PROTECTED]
 To: David W. Chapman Jr. [EMAIL PROTECTED]
 Cc: Callum M. Duncan [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Wednesday, May 22, 2002 12:43 PM
 Subject: Re: gperf broken - breaks buildworld
 
 
 
David W. Chapman, Jr. wrote:

gperf is broken because libstdc++(which gperf depends on) is broken.

I thought that was -current, not -stable?

- Rahul


 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-stable in the body of the message
 
 .
 
 


-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-stable in the body of the message



Re: gperf broken - breaks buildworld

2002-05-22 Thread David W. Chapman Jr.

 Oh, I just noticed this was posted to -stable, I thought it was posted
 to -current
 
 it should work on -stable then.  Sorry for the spam.
 
 
 
 I couldn't find libgp.a in my buildworld logs. You may of hit the 
 solution. I wonder if Callum cvsuped -current.

libgp.a I believe is something that was recently added to -current.

-- 
David W. Chapman Jr.
[EMAIL PROTECTED]   Raintree Network Services, Inc. www.inethouston.net
[EMAIL PROTECTED]   FreeBSD Committer www.FreeBSD.org

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-stable in the body of the message



Re: gperf broken - breaks buildworld

2002-05-22 Thread Callum M. Duncan

Ok you've got me all thinking...

Here is my cvsup cronjob and cvsupfile:

/usr/local/bin/cvsup -g -L 2 /etc/cvsupfile.src

FILE: cvsupfile.src

---snip---
*default  host=cvsup.freebsd.org
*default  base=/usr/local/etc/cvsup
*default  prefix=/usr
*default  release=cvs tag=RELENG_4
*default  delete use-rel-suffix 
*default  compress

src-all
---snip---

All of my machines use this.
All of my rebuilds before have had kernels that read 4.5-STABLE
(which would get me thinking that I was definitely tracking stable)

Right now since about the time of the code freeze, my kernels have
read read (uname -a) 4.6-RC and/or 4.6-PRERELEASE

I haven't been 100% diligent in logging my cvsup transactions so I
cannot review when I would have downloaded any particular files
unfortunately.

However I have been running the same cvsup file for months and
months now.

I am doing a make clean in /usr/src now.

And immediately after that I will cvsup again using that supfile
And immediatley after that I will buildworld as usual.

Hmm.
clean - done
cvsup - done
buildworld - DIES

This is how my buildworld dies exactly:

=== doc
c++  -O -pipe
-I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib
-I/usr/src/gnu/usr.bin/gperf -c
/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/bool-array.cc
c++  -O -pipe
-I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib
-I/usr/src/gnu/usr.bin/gperf -c
/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/gen-perf.cc
In file included from
/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/key-list.h:34,
 from
/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/gen-perf.h:28,
 from
/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/gen-perf.cc:26:
/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/read-line.h:40:
syntax error at end of saved text
*** Error code 1

Stop in /usr/src/gnu/usr.bin/gperf.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.


Strangely though my other machine (which also just downloaded
same sources via same cvsup file) does not die when doing a
buildworld and is well past that point of the build process.
(Still progressing, but it should be fine)

What sort of things should I look for in this case?  Obviously it is
something specific to my one machine if no one else is seeing this
and even another of my own machines is ok.

Appreciate any suggestions.
Cheers,
Callum



On Wed, May 22, 2002 at 12:54:13PM -0500, David W. Chapman Jr. wrote:
  Oh, I just noticed this was posted to -stable, I thought it was posted
  to -current
  
  it should work on -stable then.  Sorry for the spam.
  
  
  
  I couldn't find libgp.a in my buildworld logs. You may of hit the 
  solution. I wonder if Callum cvsuped -current.
 
 libgp.a I believe is something that was recently added to -current.
 
 -- 
 David W. Chapman Jr.
 [EMAIL PROTECTED] Raintree Network Services, Inc. www.inethouston.net
 [EMAIL PROTECTED] FreeBSD Committer www.FreeBSD.org
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-stable in the body of the message

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-stable in the body of the message



Re: gperf broken - breaks buildworld

2002-05-22 Thread David W. Chapman Jr.

On Wed, May 22, 2002 at 02:37:34PM -0400, Callum M. Duncan wrote:
 Ok you've got me all thinking...

Maybe you just cvsup'd this machine in the middle of a commit, if it 
exists a few hours after you originally cvsup'd, then I would erase 
gperf from /usr/src and try to recvsup.
 
-- 
David W. Chapman Jr.
[EMAIL PROTECTED]   Raintree Network Services, Inc. www.inethouston.net
[EMAIL PROTECTED]   FreeBSD Committer www.FreeBSD.org

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-stable in the body of the message



Re: gperf broken - breaks buildworld

2002-05-22 Thread Kent Stewart



David W. Chapman Jr. wrote:

 On Wed, May 22, 2002 at 02:37:34PM -0400, Callum M. Duncan wrote:
 
Ok you've got me all thinking...

 
 Maybe you just cvsup'd this machine in the middle of a commit, if it 
 exists a few hours after you originally cvsup'd, then I would erase 
 gperf from /usr/src and try to recvsup.


After your problem, I cvsuped RELENG_4 and did everything but an 
installworld.

Kent


  
 


-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-stable in the body of the message