From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11934 invoked by alias); 12 Nov 2004 23:52:54 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 11907 invoked from network); 12 Nov 2004 23:52:50 -0000 Received: from unknown (HELO yosemite.airs.com) (209.128.65.135) by sourceware.org with SMTP; 12 Nov 2004 23:52:50 -0000 Received: (qmail 26637 invoked by uid 10); 12 Nov 2004 23:52:49 -0000 Received: (qmail 30580 invoked by uid 500); 12 Nov 2004 23:52:41 -0000 From: Ian Lance Taylor To: "Daniel Wells" Cc: Subject: Re: Linking a separate library References: <83EC3E56A9A90546842E0C463D8E2210021CBA85@STRONG.exch.ad.byu.edu> Date: Fri, 12 Nov 2004 23:52:00 -0000 In-Reply-To: <83EC3E56A9A90546842E0C463D8E2210021CBA85@STRONG.exch.ad.byu.edu> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SW-Source: 2004-11/txt/msg00060.txt.bz2 "Daniel Wells" writes: > I am trying to develop software for a PC-104 board.=C2=A0 Apparently it u= ses the glibc 2.2.5 libraries.=C2=A0 There may be other libraries a well si= nce on there website they have a file for download called ALL.entire.libs.d= irs.tar.bz2.=C2=A0 The manual says the following. >=20 > One problem developers run into is missing libraries. The complete set of= unstripped glibc 2.2.5 libraries used by all TSLinux SBCs, can be found on= the Technologic Systems website. The file is named entire.libs.dir.tar.bz2= . Another common problem is mismatched library versions, between the develo= per's desktop and the target SBC. In these cases, the problem can be solved= by explicitly linking against the unpacked entire.libs.dir.tar.bz2 tarball= . The GCC manual details on how this can be accomplished. >=20 > I have not been able to find in the manual where it says how to explicitl= y link against the tarball.=C2=A0 Can you tell me how to do this or where t= o find the instructions?=C2=A0 Thanks you very much. Presumably you have to unpack the tarball and then link against individual libraries. GCC has no ability to link against an unpacked tarball. Ian