Re: picobsd redux

2002-07-02 Thread George V. Neville-Neil

> Is there any particular reason for using -current for that? The
> problem is that -current is in horrible state now (gcc 3.1, KSE-III
> and so on), so that I'd suggest to use -stable branch or -current
> sources just before gcc 3.1 import.
> 

Well there are two things going on.  My employer wants to use -CURRENT
and is willing to let me hack on it, and the other is that I volunteered to do
some of the multi-threading/locking work in the network stack.  If I can
kill these two birds with one stone I can do work for the project while also
getting paid.  Alas the paid part gets a higher priority :-)

When, exactly, was the 3.1 import?

Later,
George

-- 
George V. Neville-Neil  [EMAIL PROTECTED]
Neville-Neil Consulting www.neville-neil.com

"I learn only to be contented."  inscription at Ryoan-ji in Kyoto, Japan



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



Re: picobsd redux

2002-07-02 Thread Bob Bishop

Hi,

At 22:55 1/7/02, George V. Neville-Neil wrote:
>  When picobsd goes to build the libraries etc. it chokes on the csu
>stuff: [etc]

First, I'd echo what someone else said about avoiding -current right now.

Second, you may have better luck if you buildworld before attempting a 
picobsd build.

--
Bob Bishop  +44 (0)118 977 4017
[EMAIL PROTECTED]fax +44 (0)118 989 4254


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



Re: picobsd redux

2002-07-02 Thread Maxim Sobolev

Is there any particular reason for using -current for that? The
problem is that -current is in horrible state now (gcc 3.1, KSE-III
and so on), so that I'd suggest to use -stable branch or -current
sources just before gcc 3.1 import.

-Maxim

"George V. Neville-Neil" wrote:
> 
> Hey Folks,
> 
> So now I'm working somewhere that we're trying to use Picobsd on the
> Soekris boards (www.soekris.com).  Right now there is a build problem I'm
> trying to
> solve.  When picobsd goes to build the libraries etc. it chokes on the csu
> stuff:
> 
> CC="cc" MKDEP_CPP_OPTS="-M -DCRT_BEGIN" mkdep -f .depend -a   -nostdinc
> -I/sandb
> oxes/gnn/FreeBSD/src/../usr/include -DIN_GCC -DHAVE_LD_EH_FRAME_HDR
> -I/sandboxes
> /gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/config
> -I/sandboxes/gnn/FreeBS
> D/src/gnu/lib/csu/../../../contrib/gcc -I. -I/sandboxes/gnn/FreeBSD/src/gnu/lib
> /
> csu/../../usr.bin/cc/cc_tools  /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../
> c
> ontrib/gcc/crtstuff.c
> cc -nostdinc -I/sandboxes/gnn/FreeBSD/src/../usr/include  -DIN_GCC
> -DHAVE_LD_EH_
> FRAME_HDR -finhibit-size-directive -fno-inline-functions  -fno-exceptions
> -fno-o
> mit-frame-pointer -I/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc
> /
> config -I/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc -I.
> -I/san
> dboxes/gnn/FreeBSD/src/gnu/lib/csu/../../usr.bin/cc/cc_tools  -g0 -DCRT_BEGIN
> -
> c -o crtbegin.o /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crt
> s
> tuff.c
> In file included from /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/g
> c
> c/crtstuff.c:63:
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/unwind-dw2-fde.h:37
> :
>  field `array' has incomplete type
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/unwind-dw2-fde.h:13
> 5
> : field `augmentation' has incomplete type
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/unwind-dw2-fde.h:14
> 3
> : field `pc_begin' has incomplete type
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:254:
> warn
> ing: `used' attribute directive ignored
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c: In
> funct
> ion `__do_global_dtors_aux':
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:256:
> synt
> ax error before `completed'
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:259:
> `com
> pleted' undeclared (first use in this function)
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:259:
> (Eac
> h undeclared identifier is reported only once
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:259: for
> each function it appears in.)
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c: At top
> l
> evel:
> /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:298:
> warn
> ing: `used' attribute directive ignored
> *** Error code 1
> 
> Any pointers would be great, I need to get this stuff back up to snuff fast.
> 
> Thanks,
> George
> 
> --
> George V. Neville-Neil  [EMAIL PROTECTED]
> Neville-Neil Consulting www.neville-neil.com
> 
> "I learn only to be contented."  inscription at Ryoan-ji in Kyoto, Japan
> 
> --
> George V. Neville-Neil  [EMAIL PROTECTED]
> Neville-Neil Consulting www.neville-neil.com
> 
> "I learn only to be contented."  inscription at Ryoan-ji in Kyoto, Japan
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-current" in the body of the message

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



picobsd redux

2002-07-01 Thread George V. Neville-Neil

Hey Folks,

So now I'm working somewhere that we're trying to use Picobsd on the
Soekris boards (www.soekris.com).  Right now there is a build problem I'm 
trying to
solve.  When picobsd goes to build the libraries etc. it chokes on the csu 
stuff:

CC="cc" MKDEP_CPP_OPTS="-M -DCRT_BEGIN" mkdep -f .depend -a   -nostdinc 
-I/sandb
oxes/gnn/FreeBSD/src/../usr/include -DIN_GCC -DHAVE_LD_EH_FRAME_HDR 
-I/sandboxes
/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/config 
-I/sandboxes/gnn/FreeBS
D/src/gnu/lib/csu/../../../contrib/gcc -I. -I/sandboxes/gnn/FreeBSD/src/gnu/lib
/
csu/../../usr.bin/cc/cc_tools  /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../
c
ontrib/gcc/crtstuff.c
cc -nostdinc -I/sandboxes/gnn/FreeBSD/src/../usr/include  -DIN_GCC 
-DHAVE_LD_EH_
FRAME_HDR -finhibit-size-directive -fno-inline-functions  -fno-exceptions 
-fno-o
mit-frame-pointer -I/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc
/
config -I/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc -I.  
-I/san
dboxes/gnn/FreeBSD/src/gnu/lib/csu/../../usr.bin/cc/cc_tools  -g0 -DCRT_BEGIN  
-
c -o crtbegin.o /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crt
s
tuff.c
In file included from /sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/g
c
c/crtstuff.c:63:
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/unwind-dw2-fde.h:37
:
 field `array' has incomplete type
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/unwind-dw2-fde.h:13
5
: field `augmentation' has incomplete type
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/unwind-dw2-fde.h:14
3
: field `pc_begin' has incomplete type
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:254: 
warn
ing: `used' attribute directive ignored
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c: In 
funct
ion `__do_global_dtors_aux':
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:256: 
synt
ax error before `completed'
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:259: 
`com
pleted' undeclared (first use in this function)
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:259: 
(Eac
h undeclared identifier is reported only once
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:259: for
each function it appears in.)
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c: At top 
l
evel:
/sandboxes/gnn/FreeBSD/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c:298: 
warn
ing: `used' attribute directive ignored
*** Error code 1


Any pointers would be great, I need to get this stuff back up to snuff fast.

Thanks,
George

-- 
George V. Neville-Neil  [EMAIL PROTECTED]
Neville-Neil Consulting www.neville-neil.com

"I learn only to be contented."  inscription at Ryoan-ji in Kyoto, Japan



-- 
George V. Neville-Neil  [EMAIL PROTECTED]
Neville-Neil Consulting www.neville-neil.com

"I learn only to be contented."  inscription at Ryoan-ji in Kyoto, Japan



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