From owner-svn-src-head@freebsd.org Fri Nov 6 15:47:14 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E7BDA27901; Fri, 6 Nov 2015 15:47:14 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x22f.google.com (mail-pa0-x22f.google.com [IPv6:2607:f8b0:400e:c03::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CE831D5A; Fri, 6 Nov 2015 15:47:14 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pacdm15 with SMTP id dm15so102065155pac.3; Fri, 06 Nov 2015 07:47:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=aOzoFLdVYv5Uvqd6Xt0BPbrzcE2y0L8esS/YRMlokDw=; b=IAlBlJS2gVR3RnQqQbzxsMZGnJLrnMcvFaweLDdr7z1ru3g0yV1HcXt4+1Y9gJE3C9 dcq4DC5pHQK7NgyTesHf5ky9aySf+wFsTIjgsDZKeh7jZwObsJfCW40tQIL9vPIMukxm /8KhC3YbwLVH2e9ObU76L7w0JkbafYAIE/c/HiYdj5ZxWahqVPp/FU+nqrq3v8dCZIdP IL0p6cGSaWXe92AZPuBaY/O4+BVXNSkkwQ06EB81MFwng5MLr20CYga5fssBBOMTf2uD 8Cu1wBNIi5MaieVNBr6gsK6Ne445dhwCGtim1wBKP6djFFjzyBob4roZFycrZvhTz7n2 9e6w== X-Received: by 10.66.227.197 with SMTP id sc5mr18801941pac.157.1446824833959; Fri, 06 Nov 2015 07:47:13 -0800 (PST) Received: from [192.168.20.11] (c-24-16-212-205.hsd1.wa.comcast.net. [24.16.212.205]) by smtp.gmail.com with ESMTPSA id d2sm778845pat.24.2015.11.06.07.47.13 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 06 Nov 2015 07:47:13 -0800 (PST) Content-Type: text/plain; charset=iso-2022-jp Mime-Version: 1.0 (1.0) Subject: Re: svn commit: r290433 - in head: share/mk sys/conf tools/build/options From: Garrett Cooper X-Mailer: iPhone Mail (13B143) In-Reply-To: <563C8018.7000701@FreeBSD.org> Date: Fri, 6 Nov 2015 07:47:12 -0800 Cc: Dmitry Sivachenko , Bryan Drewery , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <201511060445.tA64jUjj063307@repo.freebsd.org> <6E5C148B-50AE-4035-9A59-69EE4ED4538C@gmail.com> <563C33DE.3070106@FreeBSD.org> <563C8018.7000701@FreeBSD.org> To: koobs@FreeBSD.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Nov 2015 15:47:14 -0000 > On Nov 6, 2015, at 02:25, Kubilay Kocak wrote: >=20 >> On 6/11/2015 4:52 PM, Dmitry Sivachenko wrote: >>=20 >>=20 >>>> 6 =1B$B'_'`'q'R=1B(B. 2015 =1B$B'T=1B(B., =1B$B'S=1B(B 8:00, Bryan Drew= ery =1B$B'_'Q'a'Z'c'Q']=1B(B(=1B$B'Q=1B(B): >>>>=20 >>>>> On 11/5/15 8:59 PM, Dmitry Sivachenko wrote: >>>>>=20 >>>>> On 06 Nov 2015, at 07:45, Bryan Drewery wrote: >>>>>=20 >>>>> Author: bdrewery >>>>> Date: Fri Nov 6 04:45:29 2015 >>>>> New Revision: 290433 >>>>> URL: https://svnweb.freebsd.org/changeset/base/290433 >>>>>=20 >>>>> Log: >>>>> Add a FAST_DEPEND option, off by default, which speeds up the build si= gnificantly. >>>>=20 >>>>=20 >>>> Well, if it just a speedup, what is the reason to introduce a new optio= n for that? >>>=20 >>> "Enabling this by default, for src or out-of-src, can be done once more >>> testing has been done, such as a ports exp-run, and with more compilers.= " >>=20 >>=20 >> Well, this is what -current is for. Just let it settle longer before MFC.= >=20 > Having an option in the first instance is also quite considerate, as it > ensures that this work doesn't block/frustrate people dogfooding CURRENT > if it ends up having issues that can't quickly be fixed without a revert. Being Jenkins being bogged down/broken recently and "make tinderbox", etc be= ing broken, it's harder to track when things break unless you do careful ins= pection (speaking of which, this reminds me that I need to setup Jenkins at w= ork to emulate jenkins.freebsd.org). I definitely appreciate knobs like this= because it gives folks the ability to toggle things on/off if issues are fo= und, either specific to their use case or not. This change (for instance), might cause grief with an older/different versio= n of gcc. Thanks, -NGie=