From owner-freebsd-current@FreeBSD.ORG Sun Mar 14 13:37:59 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 415F716A4CE for ; Sun, 14 Mar 2004 13:37:59 -0800 (PST) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23CDF43D3F for ; Sun, 14 Mar 2004 13:37:59 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) i2ELbwoN039477 for ; Sun, 14 Mar 2004 13:37:58 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost)i2ELbwOl039476 for freebsd-current@freebsd.org; Sun, 14 Mar 2004 13:37:58 -0800 (PST) (envelope-from sgk) Date: Sun, 14 Mar 2004 13:37:58 -0800 From: Steve Kargl To: freebsd-current@freebsd.org Message-ID: <20040314213758.GA39459@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: internal compiler error? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Mar 2004 21:37:59 -0000 Anyone else see problems with collect2? kargl[203] gcc -o h h.c gcc: Internal error: Bad system call (program collect2) Please submit a full bug report. See for instructions. kargl[204] cat h.c #include int main(void) { printf("Hello world.\n"); return 0; } kargl[204] truss gcc -o h h.c stat("/usr/libexec/collect2",0xbfbfe630) = 0 (0x0) access("/usr/libexec/collect2",1) = 0 (0x0) fork() = 938 (0x3aa) SIGNAL 20 wait4(0xffffffff,0xbfbfe73c,0x0,0x0) = 938 (0x3aa) gcc: write(2,0xbfbfdfd0,5) = 5 (0x5) Internal error: Bad system call (program collect2) Please submit a full bug report. See for instructions.write(2,0xbfbfdff0,140) = 140 (0x8c) write(2,0x806d4f3,1) = 1 (0x1) stat("/var/tmp/cc7im6mN.o",0xbfbfe630) = 0 (0x0) unlink("/var/tmp/cc7im6mN.o") = 0 (0x0) stat("/var/tmp/cc2Mhzku.s",0xbfbfe630) = 0 (0x0) unlink("/var/tmp/cc2Mhzku.s") = 0 (0x0) exit(0x1) process exit, rval = 256 Could this be caused by the Intel C/C++ compiler commits or the recent commits by Peter to push gaint down into fork? -- Steve