From owner-freebsd-current Mon Mar 24 14:32:38 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E639B37B401 for ; Mon, 24 Mar 2003 14:32:35 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EA2143FAF for ; Mon, 24 Mar 2003 14:32:35 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.8/8.12.7) with ESMTP id h2OMWPAm090044; Mon, 24 Mar 2003 14:32:25 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.8/8.12.8/Submit) id h2OMWPX5090039; Mon, 24 Mar 2003 14:32:25 -0800 (PST) Date: Mon, 24 Mar 2003 14:32:24 -0800 From: "David O'Brien" To: David Leimbach , freebsd-current@FreeBSD.ORG Subject: Re: "Just" building the lib part of world Message-ID: <20030324223224.GA73003@dragon.nuxi.com> Reply-To: freebsd-current@FreeBSD.ORG References: <801E9942-5D33-11D7-AFCD-0003937E39E0@mac.com> <20030323134259.GA368@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030323134259.GA368@HAL9000.homeunix.com> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 X-Spam-Status: No, hits=-32.5 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,USER_AGENT_MUTT autolearn=ham version=2.50 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Mar 23, 2003 at 05:42:59AM -0800, David Schultz wrote: > Thus spake David Leimbach : > > 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