On Sun, Mar 23, 2003 at 05:42:59AM -0800, David Schultz wrote: > Thus spake David Leimbach <[EMAIL PROTECTED]>: > > 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 [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message