我正在编译一个简单的C++文件Temp.cpp
:
#include <string>
int main() { std::wstring s; }
使用命令行:
cl.exe /MD /Iinc\api\crt\stl60 /Iinc\crt /Iinc\api C:\Temp.cpp
/LibPath:lib\wxp\i386 /LibPath:lib\crt\i386
/link /LibPath:lib\wxp\i386 /LibPath:lib\crt\i386
在WDK 7.1 Windows XP Free Build环境中。
我收到类似(LNK2019)的链接错误:
unresolved external symbol "__declspec(dllimport) public: __thiscall
std::basic_string<wchar_t,struct std::char_traits<wchar_t>,
class std::allocator<wchar_t> >::~basic_string<wchar_t,
struct std::char_traits<wchar_t>,class std::allocator<wchar_t> >(void)"
(__imp_??1?$basic_string@_WU?$char_traits@_W@std@@V?$allocator
@_W@2@@std@@QAE@XZ) referenced in function _main
如果我使用
string
而不是wstring
,那么它可以工作。是什么原因引起的?如何在源文件中使用基于
wchar_t
的类型? 最佳答案
可能的解决方法是将/ Zc:wchar_t-设置为关闭wchar_t作为固有类型。 STL6对/ Zc:wchar_t没有很好的支持,因为至少在VC7.1之前,STL6是默认的。
Meta:请不要使用STL60版本的STL。 1998年的该版本缺少大量的错误修复,性能改进和标准符合性工作,您可以在现代STL中找到它们。如果您使用的是VC编译器工具链,则免费的VC++ Express包含STL。
马丁
关于c++ - C++ WDK STL支持wchar_t吗?我得到了 Unresolved external symbol :,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5988457/