From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7978 invoked by alias); 13 May 2005 19:45:03 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 7922 invoked from network); 13 May 2005 19:44:56 -0000 Received: from unknown (HELO sadr.equallogic.com) (66.155.203.134) by sourceware.org with SMTP; 13 May 2005 19:44:56 -0000 Received: from sadr.equallogic.com (localhost.localdomain [127.0.0.1]) by sadr.equallogic.com (8.12.8/8.12.8) with ESMTP id j4DJipZb029242 for ; Fri, 13 May 2005 15:44:51 -0400 Received: from M31.equallogic.com (M31.equallogic.com [172.16.1.31]) by sadr.equallogic.com (8.12.8/8.12.8) with SMTP id j4DJilNd029237; Fri, 13 May 2005 15:44:47 -0400 Received: from pkoning.equallogic.com ([172.16.1.193]) by M31.equallogic.com with Microsoft SMTPSVC(6.0.3790.211); Fri, 13 May 2005 15:44:47 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17029.942.76640.325068@gargle.gargle.HOWL> Date: Fri, 13 May 2005 19:50:00 -0000 From: Paul Koning To: drow@false.org Cc: binutils@sources.redhat.com Subject: Re: Unintellegible ld error messages References: <17026.22346.789514.57742@gargle.gargle.HOWL> <20050511191110.GA470@nevyn.them.org> X-OriginalArrivalTime: 13 May 2005 19:44:47.0500 (UTC) FILETIME=[381D2CC0:01C557F4] X-SW-Source: 2005-05/txt/msg00459.txt.bz2 >>>>> "Daniel" == Daniel Jacobowitz writes: Daniel> On Wed, May 11, 2005 at 03:04:42PM -0400, Paul Koning wrote: >> I got these messages from ld (version 2.16): >> >> /usr/local/EQLGCC_v7/mipsel/lib/gcc/mipsel-netbsdelf/4.0.0/../../../../mipsel-netbsdelf/bin/ld: >> Cli: hidden symbol `_Unwind_GetIP' in >> /usr/local/EQLGCC_v7/mipsel/lib/gcc/mipsel-netbsdelf/4.0.0/libgcc.a(unwind-dw2.o) >> is referenced by DSO >> /usr/local/EQLGCC_v7/mipsel/lib/gcc/mipsel-netbsdelf/4.0.0/../../../../mipsel-netbsdelf/bin/ld: >> final link failed: Nonrepresentable section on output >> >> I haven't a clue what these mean. What'a DSO? What's a >> "nonrepresentable section"? More importantly, what should I do to >> find out what is wrong here? Daniel> Dynamic Shared Object. This is a standard term. It's not Daniel> mentioned in the ld manual; feel free to contribute a patch. Daniel> The hidden symbol `_Unwind_GetIP' is being referenced by a Daniel> shared library. Figure out which one it is (I don't remember Daniel> the reason why we don't print that here; I believe it's Daniel> pretty hard to recover from our data structures at that Daniel> point). Then rebuild that library using 'gcc' to link and Daniel> the symbol should no longer be undefined. The offending library is libstdc++, as compiled by GCC 4.0.0. This seems very strange. paul