This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: wstring and gcc
- From: Gokhan Kisacikoglu <kisa at centropolisfx dot com>
- To: andy <andy at softbook dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Mon, 30 Sep 2002 08:16:51 -0700
- Subject: Re: wstring and gcc
- Organization: Centropolis Effects, LLC
- References: <B9BCC094.6F60%andy@softbook.com>
- Reply-to: kisa at centropolisfx dot com
This did not work for me either;
#include <string>
int main()
{
std :: wstring foo;
return 0;
}
%> g++ -o tt tt.cpp
ld32: ERROR 33 : Unresolved text symbol "std::basic_string<wchar_t,
std::char_traits<wchar_t>, std::allocator<wchar_t>
>::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<wchar_t,
std::char_traits<wchar_t>, std::allocator<wchar_t> >::~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