I am moving a VC++ program to bcb6, and I encounter some link errors like following:
[Linker Error] Unresolved external '_STL::basic_string, _STL::allocator >::basic_string, _STL::allocator >()' referenced from E:C++ BUILDER PROGRAMSCOLORBAR_TESTFORMATSTRING.OBJ
so What is the meaning and how to handle it. Thanks a lot! Msn:yingbinchina@126.com
Comments
: like following:
:
: [Linker Error] Unresolved external '_STL::basic_string, _STL::allocator >::basic_string, _STL::allocator >()' referenced from
: E:C++ BUILDER PROGRAMSCOLORBAR_TESTFORMATSTRING.OBJ
:
: so What is the meaning and how to handle it. Thanks a lot!
: Msn:yingbinchina@126.com
:
:
The linker can not resolve a link to the STL template/class basic_string, which is the std::string class. It seems like you're missing the STL implementation. I don't know bcb6, but you should check if it has an STL (Standard Template Library)
Best Regards,
Richard
The way I see it... Well, it's all pretty blurry