From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23920 invoked by alias); 3 Sep 2004 23:34:17 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 23907 invoked from network); 3 Sep 2004 23:34:16 -0000 Received: from unknown (HELO mx2.redhat.com) (66.187.237.31) by sourceware.org with SMTP; 3 Sep 2004 23:34:16 -0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.12.10/8.12.10) with ESMTP id i83NXtl3017324; Fri, 3 Sep 2004 19:33:56 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i83NYA721627; Fri, 3 Sep 2004 19:34:10 -0400 Received: from frothingslosh.sfbay.redhat.com (frothingslosh.sfbay.redhat.com [172.16.24.27]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id i83NY9V11394; Fri, 3 Sep 2004 16:34:09 -0700 Received: from frothingslosh.sfbay.redhat.com (localhost.localdomain [127.0.0.1]) by frothingslosh.sfbay.redhat.com (8.12.10/8.12.10) with ESMTP id i83NY9Oo014082; Fri, 3 Sep 2004 16:34:09 -0700 Received: (from rth@localhost) by frothingslosh.sfbay.redhat.com (8.12.10/8.12.10/Submit) id i83NY9F9014080; Fri, 3 Sep 2004 16:34:09 -0700 X-Authentication-Warning: frothingslosh.sfbay.redhat.com: rth set sender to rth@redhat.com using -f Date: Fri, 03 Sep 2004 23:34:00 -0000 From: Richard Henderson To: Edward Peschko Cc: gcc@gcc.gnu.org Subject: Re: errors with hidden symbols and apache Message-ID: <20040903233409.GC13998@redhat.com> Mail-Followup-To: Richard Henderson , Edward Peschko , gcc@gcc.gnu.org References: <20040903223545.GA12688@mdssdev05> <20040903230853.GA13948@redhat.com> <20040903231730.GC12688@mdssdev05> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040903231730.GC12688@mdssdev05> User-Agent: Mutt/1.4.1i X-SW-Source: 2004-09/txt/msg00169.txt.bz2 On Fri, Sep 03, 2004 at 04:17:30PM -0700, Edward Peschko wrote: > On Fri, Sep 03, 2004 at 04:08:53PM -0700, Richard Henderson wrote: > > I suspect that you linked using ld, and not with the gcc driver. > > Which would be incorrect. > > > > r~ > > given that the command to do the linking was ... I did not mean the main application. I mean that one of the libraries (against which the main application is being linked) has already been linked incorrectly. The error message given doesn't actually say which library is referencing the symbol in question, but there are only a couple listed that aren't Solaris system libraries. Which limits the possibilities. Use 'readelf -r libfoo.so | grep __floatdisf' to find out which. r~