Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Mar 2003 14:32:24 -0800
From:      "David O'Brien" <dev-null@NUXI.com>
To:        David Leimbach <leimy2k@mac.com>, freebsd-current@FreeBSD.ORG
Subject:   Re: "Just" building the lib part of world
Message-ID:  <20030324223224.GA73003@dragon.nuxi.com>
In-Reply-To: <20030323134259.GA368@HAL9000.homeunix.com>
References:  <801E9942-5D33-11D7-AFCD-0003937E39E0@mac.com> <20030323134259.GA368@HAL9000.homeunix.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, Mar 23, 2003 at 05:42:59AM -0800, David Schultz wrote:
> Thus spake David Leimbach <leimy2k@mac.com>:
> > Or even better would be just building libc.  I have been working on my 
> > getpwnam_r assignment...
> > examining implementations in both Darwin and NetBSD and started trying 
> > to implement some of
> > this code for FreeBSD... Its not anywhere even near the goal in sight 
> > as I am still learning the
> > build system.
> > 
> > Do I always have to build world or can I get away with just making some 
> > subdirectories?  If so
> > what is the best way to do this?
> > 
> > Rebuilding gcc each time I just want to test out my code is a real drag 

> Try:
> 
> 	cd src/lib/libc && make && make install

I don't know why every one is missing the critical "make obj" step,
incase you are doing this w/o a fresh /usr/obj tree:

	cd src/lib/libc && make obj && make depend && make all install

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030324223224.GA73003>