Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 31 Dec 2001 20:22:08 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 31 Dec 2001 20:21:57 -0500 Received: from wire.cadcamlab.org ([156.26.20.181]:47110 "EHLO wire.cadcamlab.org") by vger.kernel.org with ESMTP id ; Mon, 31 Dec 2001 20:21:50 -0500 Date: Mon, 31 Dec 2001 19:21:19 -0600 To: Arnaldo Carvalho de Melo , Horst von Brand , Alan Cox , linux-kernel@vger.kernel.org, kbuild-devel@lists.sourceforge.net Subject: Re: State of the new config & build system Message-ID: <20020101012119.GA1303@cadcamlab.org> In-Reply-To: <200112312251.fBVMpNws032221@sleipnir.valparaiso.cl> <20011231205552.A17089@conectiva.com.br> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011231205552.A17089@conectiva.com.br> User-Agent: Mutt/1.3.24i From: Peter Samuelson Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org [Alan Cox] > > > find $TOPDIR -name "*.cf" -exec cat {} \; > Configure.help [Horst von Brand] > > cat `find $TOPDIR -name "*.cf"` > Configure.help #;-) [Arnaldo Carvalho de Melo] > whatever is faster, do you have trustable benchmark numbers? ;) Fewer forks vs. increased parallelism ... depends on the nature of your bottlenecks, I guess, and cold vs. hot cache. Or you could have it both ways: find $TOPDIR -name \*.cf | xargs -n10 cat > Configure.help ...where 10 is tuned by benchmarking. (: > Yes, its a joke, have a nice 2002 all! Yeah, same from me.. Peter - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/