Re: Upgrading -RELEASE to -CURRENT

From: Dimitry Andric <dim_at_FreeBSD.org>
Date: Mon, 22 Apr 2024 17:11:46 UTC
On 22 Apr 2024, at 18:28, Josef 'Jeff' Sipek <jeffpc@josefsipek.net> wrote:
> 
> On Fri, Apr 19, 2024 at 22:05:17 -0400, Josef 'Jeff' Sipek wrote:
> ..
>>    ld-elf.so.1: /lib/libcxxrt.so.1: version CXXABI_1.3.11 required by /lib/libc++.so.1 not found
> 
> So, the problem is /lib/libcxxrt.so.1 is *not* getting updated by 'make
> installworld' because the newly built library ends up in /usr/lib [1].  Therefore,
> the broken system has:
> 
> /lib/libcxxrt.so.1 from 14.0-RELEASE
> /usr/lib/libcxxrt.so.1 from -CURRENT
> 
> ld-elf.so finds the one in /lib fails to find the required version
> (CXXABI_1.3.11) and terminates.

This is very strange, and should not happen. The Makefile for libcxxrt
specifies SHLIBDIR?=/lib, so have you somehow overridden SHLIBDIR
somewhere in your environment?

-Dimitry