Return-Path: Delivered-To: apmail-stdcxx-issues-archive@locus.apache.org Received: (qmail 85660 invoked from network); 31 Mar 2008 23:16:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Mar 2008 23:16:49 -0000 Received: (qmail 92967 invoked by uid 500); 31 Mar 2008 23:16:49 -0000 Delivered-To: apmail-stdcxx-issues-archive@stdcxx.apache.org Received: (qmail 92922 invoked by uid 500); 31 Mar 2008 23:16:49 -0000 Mailing-List: contact issues-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list issues@stdcxx.apache.org Received: (qmail 92902 invoked by uid 99); 31 Mar 2008 23:16:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Mar 2008 16:16:49 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Mar 2008 23:16:16 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D4990234C0B4 for ; Mon, 31 Mar 2008 16:14:26 -0700 (PDT) Message-ID: <704040613.1207005266869.JavaMail.jira@brutus> Date: Mon, 31 Mar 2008 16:14:26 -0700 (PDT) From: "Eric Lemings (JIRA)" To: issues@stdcxx.apache.org Subject: [jira] Commented: (STDCXX-357) [gcc/Mac OS X] link utilities with the iconv library MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/STDCXX-357?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12583926#action_12583926 ] Eric Lemings commented on STDCXX-357: ------------------------------------- I built the latest snapshot of trunk on both Tiger and Leopard, reviewed the build results, and did some test runs of the locale-related utilities. Found no evidence of these link errors nor any runtime errors. Going to close this issue. (Note to self: Give enough detail to reproduce the exact failure next time!) > [gcc/Mac OS X] link utilities with the iconv library > ---------------------------------------------------- > > Key: STDCXX-357 > URL: https://issues.apache.org/jira/browse/STDCXX-357 > Project: C++ Standard Library > Issue Type: Improvement > Components: Utilities > Affects Versions: 4.1.2, 4.1.3 > Environment: Darwin host.local 8.8.1 Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386 i386 i386 > Reporter: Eric Lemings > Assignee: Eric Lemings > Priority: Minor > Fix For: 4.2.1 > > Original Estimate: 2h > Remaining Estimate: 2h > > Some executables (esp. locale-specific utilities) need to link with the iconv library. Patch listed below. (Don't think it will matter that the link flag is given for all link commands.) > {noformat} > Index: etc/config/gcc.config > =================================================================== > --- etc/config/gcc.config (revision 517771) > +++ etc/config/gcc.config (working copy) > @@ -127,7 +129,7 @@ > ifeq ($(OSNAME),Darwin) > # link with gcc_eh to resolve the _Unwind_xxx functions > # (shouldn't we link with it on all platforms?) > - LDLIBS += -lgcc_eh > + LDLIBS += -liconv -lgcc_eh > endif > endif # gcc > 2 > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.