From owner-freebsd-stable Fri Apr 13 7:31:54 2001 Delivered-To: freebsd-stable@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.43.230.149]) by hub.freebsd.org (Postfix) with ESMTP id 50AF237B423 for ; Fri, 13 Apr 2001 07:31:51 -0700 (PDT) (envelope-from matt@gsicomp.on.ca) Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.11.1/8.11.3) with SMTP id f3DETap01498; Fri, 13 Apr 2001 10:29:37 -0400 (EDT) (envelope-from matt@gsicomp.on.ca) Message-ID: <017001c0c425$b60c3020$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: "Robin P. Blanchard" , References: <3AD5A1F9.7133FC74@gactr.uga.edu> Subject: Re: install world on 486] Date: Fri, 13 Apr 2001 10:26:20 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > i cvs'd (src-all tag=RELENG_4) this morning and rebuilt on a i686 > with the following make.conf: > > FETCH_BEFORE_ARGS=-p > USA_RESIDENT=yes > MAKE_IDEA=YES > #CPUTYPE=i486 This will 'buildworld' everything using the current processor type. Since you're building on an i686, it's going to create code for the i686, which won't run properly on your i486. > installworld on the 486 dies with: > > pid 2645 (strip), uid 0: exited on signal 4 (core dumped) > *** Error code 70 Signal 4 is "Illegal Instruction", which is quite reasonable, since your 'buildworld' was run on an i686 machine. Early in the 'installworld' process, new copies of many compilation tools (such as strip) are installed on the target machine. Since these tools were compiled for i686, they're failing miserably on your i486. You need to re-enable the CPUTYPE lines in /etc/make.conf and re-run your 'make buildworld' again. -- Matt Emmerton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message