From stdcxx-dev-return-2477-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Wed Dec 20 19:57:30 2006 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 33977 invoked from network); 20 Dec 2006 19:57:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Dec 2006 19:57:29 -0000 Received: (qmail 40275 invoked by uid 500); 20 Dec 2006 19:57:36 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 40265 invoked by uid 500); 20 Dec 2006 19:57:36 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 40252 invoked by uid 99); 20 Dec 2006 19:57:36 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Dec 2006 11:57:36 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Dec 2006 11:57:26 -0800 Received: from qxvcexch01.ad.quovadx.com (qxvcexch01.ad.quovadx.com [192.168.170.59]) by moroha.quovadx.com (8.13.6/8.13.6) with ESMTP id kBKJuPU2014258 for ; Wed, 20 Dec 2006 19:56:25 GMT Received: from [10.70.3.113] ([10.70.3.113]) by qxvcexch01.ad.quovadx.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 20 Dec 2006 12:56:38 -0700 Message-ID: <458995A6.2010604@roguewave.com> Date: Wed, 20 Dec 2006 12:57:26 -0700 From: Martin Sebor Organization: Rogue Wave Software User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060417 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: Problem using Standard Library References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 20 Dec 2006 19:56:38.0302 (UTC) FILETIME=[F5DA73E0:01C72470] X-Virus-Checked: Checked by ClamAV on apache.org Jeremy Dean wrote: > I have a customer that is having a problem using the Standard Library. > The error message returned is: > > /usr/bin/ld: hal_rwstdlib_links: hidden symbol `_Unwind_GetIPInfo' in > /usr/lib/gcc-lib/i386-redhat-linux/3.2.3/libgcc_eh.a(unwind-dw2.oS) is > referenced by DSO > collect2: ld returned 1 exit status > > It seems to build the Standard Library ok, but then fails when trying to > use it with anything. > > OS: Red Hat - 2.4.21-47.0.1.EL > Compiler: gcc (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-56) > Binutils: 2.14.90.0.4 20030523 > > I have not found anything like this before .. any ideas? _Unwind_GetIPInfo is a gcc symbol. I suspect it might be a gcc bug. Does this sound like the problem they're seeing: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27880 Martin