From owner-freebsd-questions Thu Apr 11 13:57:58 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA11741 for questions-outgoing; Thu, 11 Apr 1996 13:57:58 -0700 (PDT) Received: from ermintrude.sunquest.com (ermintrude.Sunquest.COM [149.138.2.211]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id NAA11730 for ; Thu, 11 Apr 1996 13:57:52 -0700 (PDT) Received: from LOCALHOST (LOCALHOST [127.0.0.1]) by ermintrude.sunquest.com (8.7.5/8.6.12) with SMTP id NAA00907 for ; Thu, 11 Apr 1996 13:54:46 -0700 (MST) Message-Id: <199604112054.NAA00907@ermintrude.sunquest.com> X-Authentication-Warning: ermintrude.sunquest.com: Host LOCALHOST [127.0.0.1] didn't use HELO protocol To: questions@freebsd.org Reply-To: tony@odin.sunquest.com X-Face: ZQe?G+$UQG8,i~KL=gy`T:c1bxG<{7ta&{,'$LiA !`"u>-"@wkx>yf.z_5 Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In article <199604111024.MAA14259@gilberto.physik.rwth-aachen.de> you wrote: : > : > : > Several packages from the FreeBSD site won't run saying that they : > can't find libc.so.3.0 : > I can't find this file on the net anywhere. Does anyone know : > where I can get it? : As a workaround you can : ln -s /lib/libc.so.2.2 /usr/lib/libc.so.3.0 : ^ : or 1 When I generate an a.out using -Bdynamic, the ld man page is pretty clear that the highest version (on my system) of each referenced shared library is recorded in the executable. What does this require of the subsequent executor ? If the version of library foo I recorded was 2.2, does that require the executor to have 2.2 exactly, or will any version >= 2.2 surfice ? BTW: [Are there any detailed docs on the shared library implementation ?] tony