From owner-freebsd-questions@FreeBSD.ORG Thu Nov 10 13:17:38 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A23E1065672 for ; Thu, 10 Nov 2011 13:17:38 +0000 (UTC) (envelope-from ml@my.gd) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id E0D098FC0C for ; Thu, 10 Nov 2011 13:17:37 +0000 (UTC) Received: by wyf23 with SMTP id 23so578447wyf.13 for ; Thu, 10 Nov 2011 05:17:36 -0800 (PST) Received: by 10.216.229.94 with SMTP id g72mr6254052weq.74.1320931056872; Thu, 10 Nov 2011 05:17:36 -0800 (PST) Received: from dfleuriot-at-hi-media.com ([83.167.62.196]) by mx.google.com with ESMTPS id e40sm9545707wbp.3.2011.11.10.05.17.34 (version=SSLv3 cipher=OTHER); Thu, 10 Nov 2011 05:17:35 -0800 (PST) Message-ID: <4EBBCEEA.4040604@my.gd> Date: Thu, 10 Nov 2011 14:17:30 +0100 From: Damien Fleuriot User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: FreeBSD make buildworld fail: cc: Internal error: Killed: 9 (program cc1) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Nov 2011 13:17:38 -0000 On 11/10/11 11:05 AM, Traiano Welcome wrote: > Hi All > > I'm trying to upgrade from FreeBSD 8.0-RELEASE #0 to FreeBSD 8.2 or > better. My upgrade sequence would be as follows: > > 0. cd /usr/src/;make cleanworld (and in extreme cases rm -rf /usr/src/* > and rm -rf /usr/obj) > 1. csup -L 2 stable supfile. > 2. cd /usr/src; make buildworld && make buildkernel && make installkernel > && make installworld && reboot > 3. mergemaster -p && make installworld && mergemaster && reboot > Your upgrade steps are wrong, although this has nothing to do with your buildworld failing. 1/ make buildworld (automatically cleans up anyway) 2/ make buildkernel 3/ make installkernel 4/ mergemaster -p 5/ reboot (single user if possible) 6/ make installworld 7/ mergemaster -F 8/ reboot 9/ optional, make delete-old Why use csup manually ? Set your variables in /etc/make.conf and just run "make update" from /usr/src. Here are mine: SUP_UPDATE= yes SUP= /usr/bin/csup SUPFLAGS= -zgL 2 SUPHOST= cvsup1.fr.freebsd.org SUPFILE= /etc/cvsup/stable-supfile PORTSSUPFILE= /etc/cvsup/ports-supfile DOCSUPFILE= /etc/cvsup/doc-supfile ==> Post your src.conf and make.conf, your problem might be there. As a last resort, I would suggest synching sources with 8.1 and trying to build it, to see if you still encounter the problem.