Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 72754 invoked from network); 6 Jan 2006 00:49:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Jan 2006 00:49:17 -0000 Received: (qmail 95052 invoked by uid 500); 6 Jan 2006 00:49:17 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 95036 invoked by uid 500); 6 Jan 2006 00:49:17 -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 95025 invoked by uid 99); 6 Jan 2006 00:49:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jan 2006 16:49:17 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [12.17.213.84] (HELO bco-exchange.bco.roguewave.com) (12.17.213.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jan 2006 16:49:16 -0800 Received: from [10.70.3.113] (10.70.3.113 [10.70.3.113]) by bco-exchange.bco.roguewave.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2657.72) id ZGW2787V; Thu, 5 Jan 2006 17:42:39 -0700 Message-ID: <43BDBF53.4050008@roguewave.com> Date: Thu, 05 Jan 2006 17:52:35 -0700 From: Martin Sebor User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050920 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: string streams related failure w/ icl 8.1 on win2k References: <1134092011.29341.ezmlm@incubator.apache.org> <4399BE0A.3080308@roguewave.com> In-Reply-To: <4399BE0A.3080308@roguewave.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Liviu Nicoara wrote: > Martin, > > The following test case, obtained from reducing a Tools translation > unit, fails only with our stdlib (icl 8.1 on win2k, 12d builds): Could you please open an issue for this in Jira so we don't lose track of the problem? Thanks Martin > > $ cat t.cpp > > #include > > struct A : public std::iostream > { > A () : std::iostream (0) { } > }; > > #include > > int main () > { > std::stringstream ss; > ss << int (0); > > return 0; > } > > and yields: > > icl -D_RWCONFIG=12d -I.\..\..\..\../include > -I.\..\..\..\../include/ansi -I.\..\..\..\.. -I.\..\..\..\.. -I.. -I. > -nologo -GX -MD -O2 -c ..\t.cpp > t.cpp > > Microsoft (R) Program Maintenance Utility Version 7.10.3077 > Copyright (C) Microsoft Corporation. All rights reserved. > > link -nologo /NODEFAULTLIB:msvcprt /LIBPATH:.\..\..\..\..\lib > /OUT:t.exe t.obj tlt12d.lib ftp12d.lib thread12d.lib itc12d.lib > functor_list12d.lib internet12d.lib functor12d.lib pointer12d.lib > sync12d.lib threxcept12d.lib trace12d.lib network12d.lib ws2_32.lib > tls12d.lib std12d.lib user32.lib > t.obj : error LNK2019: unresolved external symbol "const > std::basic_iostream >::`vftable'" > (??_7?$basic_iostream@DU?$char_traits@D@std@@@std@@6B@) referenced in > function _main > t.obj : error LNK2019: unresolved external symbol "const > std::basic_iostream >::`vbtable'{for > `std::basic_istream >'}" > (??_8?$basic_iostream@DU?$char_traits@D@std@@@std@@7B?$basic_istream@DU?$char_traits@D@std@@@1@@) > referenced in function _main > t.obj : error LNK2019: unresolved external symbol "const > std::basic_iostream >::`vbtable'{for > `std::basic_ostream >'}" > (??_8?$basic_iostream@DU?$char_traits@D@std@@@std@@7B?$basic_ostream@DU?$char_traits@D@std@@@1@@) > referenced in function _main > t.exe : fatal error LNK1120: 3 unresolved externals > NMAKE : fatal error U1077: 'link' : return code '0x460' > > Liviu