From owner-freebsd-current@FreeBSD.ORG Mon Jun 20 17:38:39 2005 Return-Path: X-Original-To: freebsd-current@FreeBSD.org 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 700ED16A41C for ; Mon, 20 Jun 2005 17:38:39 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [204.156.12.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B78E43D4C for ; Mon, 20 Jun 2005 17:38:39 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by cyrus.watson.org (Postfix) with ESMTP id 5041446B55 for ; Mon, 20 Jun 2005 13:38:38 -0400 (EDT) Date: Mon, 20 Jun 2005 18:41:26 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: freebsd-current@FreeBSD.org In-Reply-To: <20050620173016.GB93634@dragon.NUXI.org> Message-ID: <20050620183857.R26664@fledge.watson.org> References: <20050619155228.Y6413@fledge.watson.org> <66959.1119209763@critter.freebsd.dk> <20050620094835.Q19830@fledge.watson.org> <20050620173016.GB93634@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: Re: Summary: experiences with NanoBSD, successes and nits on a Soekris 4801 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Jun 2005 17:38:39 -0000 On Mon, 20 Jun 2005, David O'Brien wrote: > On Mon, Jun 20, 2005 at 09:58:46AM +0100, Robert Watson wrote: >> - Try to figure out how to better differentiate build vs. install time >> frobbing. For example, the NanoBSD NO_CXX concern: we want C++ >> applications, we just don't want to install the build chain. >> Currently, we have no way to differentiate these concepts, since our >> dependencies are entirely build-time, and our frobs have to match up >> (generally) between build and install. I.e., devd is built only if >> !NO_CXX, which is a build-time concern. > > Is NanoBSD split into a build and install phase like > buildworld/installworld? If so, can you try the equivalent of 'make > buildworld && make -DNO_CXX installworld'? installworld and buildworld both conditionalize recursing into devd based on NO_CXX. I.e., we don't distinguish between that dependency for build/install separately. Robert N M Watson