Clang Windows下编译警告 warning LNK4217
我想在 Windows 下使用用 clang,在官网下载安装完后,写了如下代码进行测试(clang 版本5.0.0)
#include <iostream>
using namespace std;
int main ()
{
int num;
cin >> num;
return 0;
}
然后报了以下警告
main-5c2573.o : warning LNK4217: 本地定义的符号 _CxxThrowException 在函数 "class std::num_get<char,class std::istreambuf_iterator<char,struct std::char_traits<char> > > const & __cdecl std::use_facet<class std::num_get<char,class std::istreambuf_iterator<char,struct std::char_traits<char> > > >(class std::locale const &)" (??$use_facet@V?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAAEBV?$num_get@DV?$istreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@AEBVlocale@0@@Z) 中导入
main-5c2573.o : warning LNK4217: 本地定义的符号 __std_terminate 在函数 "int public: __cdecl std::locale::~locale(void)'::
1'::dtor$6" (?dtor$6@?0???1locale@std@@QEAA@XZ@4HA) 中导入
想问下到底是什么原因造成的呢?
谢谢大家!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论