From owner-freebsd-hackers Fri Aug 23 00:55:01 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA04451 for hackers-outgoing; Fri, 23 Aug 1996 00:55:01 -0700 (PDT) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id AAA04440 for ; Fri, 23 Aug 1996 00:54:58 -0700 (PDT) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.7.5/8.6.9) with ESMTP id AAA06323; Fri, 23 Aug 1996 00:54:45 -0700 (PDT) To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) cc: freebsd-hackers@FreeBSD.org Subject: Re: Curio In-reply-to: Your message of "Fri, 23 Aug 1996 08:59:57 +0200." <199608230659.IAA29250@uriah.heep.sax.de> Date: Fri, 23 Aug 1996 00:54:45 -0700 Message-ID: <6321.840786885@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-hackers@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > But that's certainly due to the ISA RAM. My 386BSD 0.1 system on a > 386sx16 with 6 MB RAM built the entire X11R5 tree in slightly more > than 24 hours. ;-) Speaking of which, I've been looking at how the tree is built during a make world and I notice that we do a make depend pass, then we do the make all, but by doing it in two passes this way it would seem that we lose what would be a free buffer-cache-load from the "make depend" for the "make all" since make depend reads through all the same files. Doncha think? I've tried making some simple mods to bsd.port.mk, bsd.lib.mk and bsd.sgml.mk which fold depend into all, then removing all the explicit make depends in /usr/src/Makefile. I'm timing a make world on it now to see if there's any difference. :-) Jordan