From owner-freebsd-stable@FreeBSD.ORG Wed Oct 15 10:56:07 2008 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67AED106569C for ; Wed, 15 Oct 2008 10:56:07 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from QMTA07.emeryville.ca.mail.comcast.net (qmta07.emeryville.ca.mail.comcast.net [76.96.30.64]) by mx1.freebsd.org (Postfix) with ESMTP id 4C0D68FC19 for ; Wed, 15 Oct 2008 10:56:07 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from OMTA05.emeryville.ca.mail.comcast.net ([76.96.30.43]) by QMTA07.emeryville.ca.mail.comcast.net with comcast id SypF1a0060vp7WLA7yw6ee; Wed, 15 Oct 2008 10:56:06 +0000 Received: from koitsu.dyndns.org ([69.181.141.110]) by OMTA05.emeryville.ca.mail.comcast.net with comcast id Syw51a0072P6wsM8Ryw6k6; Wed, 15 Oct 2008 10:56:06 +0000 X-Authority-Analysis: v=1.0 c=1 a=GaghC3qbtOgA:10 a=QycZ5dHgAAAA:8 a=BR3IQmGIJPVhFJgSlrIA:9 a=Xa8QLU_JAV9_FV18btAA:7 a=16gUu44vYf544LrcyujTpmnVYq0A:4 a=EoioJ0NPDVgA:10 a=LY0hPdMaydYA:10 Received: by icarus.home.lan (Postfix, from userid 1000) id E811EC9419; Wed, 15 Oct 2008 03:56:05 -0700 (PDT) Date: Wed, 15 Oct 2008 03:56:05 -0700 From: Jeremy Chadwick To: Claus Guttesen Message-ID: <20081015105605.GB75226@icarus.home.lan> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Cc: FreeBSD Stable Subject: Re: error during buildworld on 7.1 beta X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Oct 2008 10:56:07 -0000 On Wed, Oct 15, 2008 at 12:27:59PM +0200, Claus Guttesen wrote: > Hi. > > Did a fresh FreeBSD 7.1 install using the beta on amd64 from disc1. I > did a standard-install with sources, performed a csup against RELENG_7 > and then a buildworld. It stops at: > > mv -f term.h.new term.h > cc -m32 -march=nocona -mfancy-math-387 -DCOMPAT_32BIT -iprefix > /usr/obj/usr/src/lib32/usr/ -L/usr/obj/usr/src/lib32/usr/lib32 > -B/usr/obj/usr/src/lib32/usr/lib32 -o make_keys -O2 > -fno-strict-aliasing -pipe -I. > -I/usr/obj/lib32/usr/src/lib/ncurses/ncurses/../ncurses > -I/usr/src/lib/ncurses/ncurses/../ncurses > -I/usr/src/lib/ncurses/ncurses/../ncurses > -I/usr/src/lib/ncurses/ncurses/../../../contrib/ncurses/include > -I/usr/src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses -Wall > -DNDEBUG -DHAVE_CONFIG_H -DFREEBSD_NATIVE -DTERMIOS > /usr/src/lib/ncurses/ncurses/../../../contrib/ncurses/ncurses/tinfo/make_keys.c > ./make_keys keys.list > init_keytry.h > ELF interpreter /libexec/ld-elf32.so.1 not found > Abort trap > *** Error code 134 My guess: when you installed 7.1, you did not choose to install lib32 for 32-bit compatibility (so you can run 32-bit binaries on a 64-bit arch). But when building world, you did not set WITHOUT_LIB32=true in /etc/src.conf, so the system is trying to make use of the 32-bit ld.so shim that does not exist since you didn't install it. > NO_LPR= true # do not build lpr and related programs > NO_SENDMAIL= true # do not build sendmail and related programs These have been renamed, and go into /etc/src.conf, not make.conf. You should use this in /etc/src.conf: WITHOUT_LPR=true WITHOUT_SENDMAIL=true See src.conf(5) for details. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB |