From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9797 invoked by alias); 30 Sep 2002 15:15:22 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 9786 invoked from network); 30 Sep 2002 15:15:21 -0000 Received: from unknown (HELO mail.centropolisfx.com) (64.70.30.98) by sources.redhat.com with SMTP; 30 Sep 2002 15:15:21 -0000 Received: from centropolisfx.com (jupiter.centropolisfx.com [172.20.2.83]) by mail.centropolisfx.com (8.11.3/8.11.3) with ESMTP id g8UFGqv327401; Mon, 30 Sep 2002 08:16:52 -0700 (PDT) Message-ID: <3D986AE3.9074792B@centropolisfx.com> Date: Mon, 30 Sep 2002 08:15:00 -0000 From: Gokhan Kisacikoglu Reply-To: kisa@centropolisfx.com Organization: Centropolis Effects, LLC X-Accept-Language: en MIME-Version: 1.0 To: andy CC: gcc-help@gcc.gnu.org Subject: Re: wstring and gcc References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2002-09/txt/msg00230.txt.bz2 This did not work for me either; #include int main() { std :: wstring foo; return 0; } %> g++ -o tt tt.cpp ld32: ERROR 33 : Unresolved text symbol "std::basic_string, std::allocator >::basic_string[in-charge]()" -- 1st referenced by /tmp/ccHkNfJj.o. Use linker option -v to see when and which objects, archives and dsos are loaded. ld32: ERROR 33 : Unresolved text symbol "std::basic_string, std::allocator >::~basic_string [in-charge]()" -- 1st referenced by /tmp/ccHkNfJj.o. Use linker option -v to see when and which objects, archives and dsos are loaded. ld32: INFO 152: Output file removed because of error. collect2: ld returned 2 exit status What's that [in-charge] mean? Gokhan