From owner-freebsd-current Thu Jan 27 13:44:25 2000 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id F246A14E66 for ; Thu, 27 Jan 2000 13:44:21 -0800 (PST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id OAA07077 for ; Thu, 27 Jan 2000 14:44:20 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id OAA48475 for ; Thu, 27 Jan 2000 14:44:27 -0700 (MST) Message-Id: <200001272144.OAA48475@harmony.village.org> To: current@freebsd.org Subject: Comments on this patch? Date: Thu, 27 Jan 2000 14:44:27 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been running this for a while. I reversed the normal order to make it easier to do the math w/o having to shift columns and flip things over. BTW, I'm getting numbers that are 2x bigger than before :-(. I had makebuildworld down to around 1:20 at one point, but now it is 2:40. Comments? Warner Index: Makefile =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/Makefile,v retrieving revision 1.233 diff -u -r1.233 Makefile --- Makefile 2000/01/09 18:17:48 1.233 +++ Makefile 2000/01/27 21:42:39 @@ -130,6 +130,19 @@ @echo ">>> ${OBJFORMAT} make world started on ${STARTTIME}" @echo ">>> ${OBJFORMAT} make world completed on `LC_TIME=C date`" @echo "--------------------------------------------------------------" +# +# Timed buildworld +# +timed-buildworld: upgrade_checks + @echo "--------------------------------------------------------------" + @echo ">>> ${OBJFORMAT} make buildworld started on ${STARTTIME}" + @echo "--------------------------------------------------------------" + @cd ${.CURDIR}; ${MAKE} buildworld + @echo + @echo "--------------------------------------------------------------" + @echo ">>> ${OBJFORMAT} make buildworld completed on `LC_TIME=C date`" + @echo ">>> ${OBJFORMAT} make buildworld started on ${STARTTIME}" + @echo "--------------------------------------------------------------" # # Perform a few tests to determine if the installed tools are adequate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message