Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Jan 2000 14:44:27 -0700
From:      Warner Losh <imp@village.org>
To:        current@freebsd.org
Subject:   Comments on this patch?
Message-ID:  <200001272144.OAA48475@harmony.village.org>

next in thread | raw e-mail | index | archive | help

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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200001272144.OAA48475>