From owner-freebsd-current Sun Sep 14 11:03:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA20617 for current-outgoing; Sun, 14 Sep 1997 11:03:36 -0700 (PDT) Received: from tasogare.imasy.or.jp (root@tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA20610 for ; Sun, 14 Sep 1997 11:03:31 -0700 (PDT) Received: (from ume@localhost) by tasogare.imasy.or.jp (8.8.7+2.7Wbeta7/3.4W4-96030215) with UUCP id CAA18263; Mon, 15 Sep 1997 02:41:52 +0900 (JST) Received: from peace.calm.imasy.or.jp (root@peace.calm.imasy.or.jp [158.214.107.233]) by chaos.calm.imasy.or.jp (8.8.7/3.6Wbeta6-CHAOS1.5) with ESMTP id CAA24531; Mon, 15 Sep 1997 02:40:53 +0900 (JST) Received: from localhost (ume@localhost [127.0.0.1]) by peace.calm.imasy.or.jp (8.8.7/3.6Wbeta6-CALM1.0) with ESMTP id CAA02407; Mon, 15 Sep 1997 02:40:10 +0900 (JST) Message-Id: <199709141740.CAA02407@peace.calm.imasy.or.jp> To: nnd@itfs.nsk.su Cc: current@FreeBSD.ORG Cc: ume@calm.imasy.or.jp Subject: Re: Make and SMP - what can be done ? In-Reply-To: Your message of "17 Aug 1997 06:15:24 GMT" <5t64ts$7ae@news.itfs.nsk.su> References: <5t64ts$7ae@news.itfs.nsk.su> X-Mailer: Mew version 1.90 on XEmacs 20.3 (Kiev) X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.or.jp/~ume/ Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Mon_Sep_15_02:40:05_1997_518)--" Content-Transfer-Encoding: 7bit Date: Mon, 15 Sep 1997 02:40:10 +0900 From: Hajimu UMEMOTO X-Dispatcher: imput version 970830 Lines: 60 Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ----Next_Part(Mon_Sep_15_02:40:05_1997_518)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, >>>>> On 17 Aug 1997 06:15:24 GMT, nnd@itfs.nsk.su said: nnd> Here is a report of my experiments in "parallel" nnd> world making. I applied your patch with recent -current, and tried `make -j8 buildworld'. It failed in sys/i386/boot/netboot. sys/i386/boot/netboot/Makefile is seems to not parallel-safe. Here is a patch. ----Next_Part(Mon_Sep_15_02:40:05_1997_518)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit --- sys/i386/boot/netboot/Makefile.orig Fri May 16 04:04:33 1997 +++ sys/i386/boot/netboot/Makefile Sun Sep 14 20:05:17 1997 @@ -72,16 +72,18 @@ ${.OBJDIR}/makerom ${.TARGET} nb8390.com: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} ns8390.o - ${LD} ${LDFLAGS} -o netboot.com ${OBJS} ns8390.o - strip netboot.com - size netboot.com - dd ibs=32 skip=1 if=netboot.com of=${.TARGET} + ${LD} ${LDFLAGS} -o ${.TARGET}.tmp ${OBJS} ns8390.o + strip ${.TARGET}.tmp + size ${.TARGET}.tmp + dd ibs=32 skip=1 if=${.TARGET}.tmp of=${.TARGET} + rm -f ${.TARGET}.tmp nb3c509.com: start2.o ${SRCS:N*.h:R:S/$/.o/g} 3c509.o - ${LD} ${LDFLAGS} -o netboot.com ${OBJS} 3c509.o - strip netboot.com - size netboot.com - dd ibs=32 skip=1 if=netboot.com of=${.TARGET} + ${LD} ${LDFLAGS} -o ${.TARGET}.tmp ${OBJS} 3c509.o + strip ${.TARGET}.tmp + size ${.TARGET}.tmp + dd ibs=32 skip=1 if=${.TARGET}.tmp of=${.TARGET} + rm -f ${.TARGET}.tmp .include ----Next_Part(Mon_Sep_15_02:40:05_1997_518)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@imasy.or.jp ume@iabs.hitachi.co.jp http://www.imasy.or.jp/~ume/ ----Next_Part(Mon_Sep_15_02:40:05_1997_518)----