From owner-cvs-src@FreeBSD.ORG Fri Aug 29 14:32:56 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD46B16A4BF; Fri, 29 Aug 2003 14:32:56 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDEC543FEA; Fri, 29 Aug 2003 14:32:55 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id h7TLWtQX071315; Fri, 29 Aug 2003 14:32:55 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h7TLWtUR071314; Fri, 29 Aug 2003 14:32:55 -0700 (PDT) Date: Fri, 29 Aug 2003 14:32:55 -0700 From: "David O'Brien" To: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20030829213255.GB71225@dragon.nuxi.com> References: <200308291035.h7TAZ1Wm008611@repoman.freebsd.org> <20030829183759.GA68755@dragon.nuxi.com> <20030829121043.K43708@root.org> <20030829194007.GA69823@dragon.nuxi.com> <20030829200349.GA86217@wombat.localnet> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030829200349.GA86217@wombat.localnet> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-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 Subject: Re: cvs commit: src/gnu/usr.bin Makefile src/lib Makefile src/sbin Makefile src/usr.bin Makefile src/usr.sbin Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Aug 2003 21:32:56 -0000 On Fri, Aug 29, 2003 at 04:03:50PM -0400, Michael Edenfield wrote: > > > > > > NO_TOOLCHAIN skips Compilers and Binutils ... > > I disagree that it should be a single (MINIMAL(sp?)) knob. But that > > there should be more discussion about it. If you have NO_TOOLCHAIN set, > > I can't think of a reason to have /usr/include or /usr/lib/*.a populated; > > for instance. > > If you don't have a compiler or binutils toolchain installed, then make > buildworld isn't going to make it very far in general :) Yes that is obvious. When one sets NO_TOOLCHAIN they are obviously building world on a workstation and doing the 'make installworld' with a destination on the "embedded" machine. If NO_TOOLCHAIN is set, it is OK to assume a [mostly] complete world on the build machine and that it matches the sources being built. NO_TOOLCHAIN however, would keep from installing compiler, /usr/include/*, and /usr/lib/*.a. Also any optimization of 'make buildworld' time should occur knowing that things like lib*.a won't be used or installed.