Subject: Re: CrtbeginS.o problem with current
To: Paul Newhouse <newhouse@rockhead.com>
From: Simon Burge <simonb@NetBSD.ORG>
List: current-users
Date: 05/12/2000 22:14:20
Paul Newhouse wrote:

> Platform i386
> 
>    all ===> csu
>    all ===> csu/i386_elf
>    all ===> libarch
>    make: don't know how to make /usr/src/ELF/usr/lib/crtbeginS.o. Stop
>    *** Error code 2

Are you building into a DESTDIR /usr/src/ELF, but not using "make
build"?  If you type "make -n build" in /usr/src, you'll see that it
builds then install lib/csu, and after that builds the rest of lib.

Try something like:

	( cd lib/csu && make dependall && make install )
	( cd lib && make dependall && make install )
	...

Simon.