From owner-freebsd-current Mon Jun 17 11:27:52 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id LAA17519 for current-outgoing; Mon, 17 Jun 1996 11:27:52 -0700 (PDT) Received: from parkplace.cet.co.jp (parkplace.cet.co.jp [202.32.64.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id LAA17514 for ; Mon, 17 Jun 1996 11:27:50 -0700 (PDT) Received: from localhost (michaelh@localhost) by parkplace.cet.co.jp (8.7.5/CET-v2.1) with SMTP id DAA03003 for ; Tue, 18 Jun 1996 03:27:48 +0900 (JST) Date: Tue, 18 Jun 1996 03:27:47 +0900 (JST) From: Michael Hancock To: freebsd-current@FreeBSD.org Subject: Re: make core dumps while building libf2c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Sorry, about the make world traffic earlier. I had to raise the limit on open files. The memory fault error confused me. # ulimit -a core file size (blocks) unlimited data seg size (kbytes) 65536 file size (blocks) unlimited max memory size (kbytes) 29992 stack size (kbytes) 8192 cpu time (seconds) unlimited max user processes 40 pipe size (512 bytes) 1 open files 64 virtual memory (kbytes) 73728 My updated 'make world' script. #!/bin/sh ulimit -d unlimited ulimit -f unlimited ulimit -m unlimited ulimit -s unlimited ulimit -n unlimited make world 1>make.log 2>&1 A pstat while making world. # pstat -T 72/1576 files 2812 vnodes 6M/127M swap space On Sun, 16 Jun 1996, Michael Hancock wrote: > Does anyone have suggestions for getting make world to complete? > > # find . -name \*\.core -print > ./obj/lib/libf2c/make.core > > # tail /usr/src/make.log > cc -fpic -DPIC -O2 -pipe -DIEEE_drem -DNON_ANSI_RW_MODES -DNON_UNIX_STDIO > -c /us > r/src/lib/libf2c/../libI77/wsle.c -o wsle.so > cc -fpic -DPIC -O2 -pipe -DIEEE_drem -DNON_ANSI_RW_MODES -DNON_UNIX_STDIO > -c /us > r/src/lib/libf2c/../libI77/wsne.c -o wsne.so > cc -fpic -DPIC -O2 -pipe -DIEEE_drem -DNON_ANSI_RW_MODES -DNON_UNIX_STDIO > -c /us > r/src/lib/libf2c/../libI77/xwsne.c -o xwsne.so > building shared f2c library (version 2.0) > *** Error code 139 > > Stop. > *** Error code 1 > > Stop. >