From owner-freebsd-stable@FreeBSD.ORG Tue Jan 20 16:01:41 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF0C4A36 for ; Tue, 20 Jan 2015 16:01:41 +0000 (UTC) Received: from mail-we0-x22e.google.com (mail-we0-x22e.google.com [IPv6:2a00:1450:400c:c03::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C4A3254 for ; Tue, 20 Jan 2015 16:01:41 +0000 (UTC) Received: by mail-we0-f174.google.com with SMTP id x3so4949915wes.5 for ; Tue, 20 Jan 2015 08:01:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=UF50EehqSb3yXtJpYayfEuqY+/ScbKPAt72Ik+3r0T4=; b=Pns2wCU6cYw5dzud+29700JCyhKSOASjhc1mXh4U/hJNr7PINWqUeVxOKxlIZgR7im 2pEU3Hp1YxTTbixUnqwUM4uzxz0yyoUhaADrvGPj4zxCOUvnRm6+5t22mfjkfdtQoeuK AuqzDqR4wyaUwt6WXkU93DTyNVxyQbBE+qsIFvzldMpHuaqgYDQjll7BgyK+UxAjiq89 dzMDklq/vQVzBjg7eIx6jNWTrQlCHKtIWKUAUomZgDm9Vlqfq1G9fnCRFVwGQPaywWcr tW9Ywl4qWbj0yOTtXD+oJtddKrfG2ydvL0X5POHPJO/UiVh1mpgvhxJU7jT2DCR+p+2F 5BEw== X-Received: by 10.194.24.195 with SMTP id w3mr70429302wjf.135.1421769699924; Tue, 20 Jan 2015 08:01:39 -0800 (PST) Received: from [192.168.1.145] (static-228-200-167-83.thenetworkfactory.nl. [83.167.200.228]) by mx.google.com with ESMTPSA id bb2sm10108164wjc.43.2015.01.20.08.01.39 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 20 Jan 2015 08:01:39 -0800 (PST) Message-ID: <54BE7BE3.8020207@gmail.com> Date: Tue, 20 Jan 2015 17:01:39 +0100 From: Johan Hendriks User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Konstantin Belousov Subject: Re: installworld fails References: <54BE76CC.5020901@gmail.com> <20150120155406.GG42409@kib.kiev.ua> In-Reply-To: <20150120155406.GG42409@kib.kiev.ua> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jan 2015 16:01:42 -0000 Thanks, Your solution did work, thank you very much. I do the same routine as always. The buildworld and build kernel went fine. cd /usr/src/ make cleanworld make buildworld make kernel mergemaster -p make installworld mergemaster -iU Your solution did work, thank you very much. Op 20-01-15 om 16:54 schreef Konstantin Belousov: > On Tue, Jan 20, 2015 at 04:39:56PM +0100, Johan Hendriks wrote: >> Hello all. >> >> I use to do a weekly buildworld on my 10 stable system, today was no >> exception. >> But during installworld I get the following error. >> >> mtree -deU -f /usr/src/include/../etc/mtree/BSD.include.dist -p >> /usr/include >> /lib/libthr.so.3: Undefined symbol "__set_error_selector" >> *** Error code 1 > Your installed libc is older than your libthr. I have no idea how you > get into this state. Also, the ld-elf.so.1 error message about missed > symbol from libthr.so cannot come from an attempt to run mtree, since > mtree does not link to libthr.so. > > I cannot help you with your issues, but to get working libc/libthr, if > you successfully built the world, do > cd /usr/src/lib/libc && make install > Depending on the amount of brokeness, you might also need to do > cd /usr/src/libexec/rtld-elf && make install