当尝试包含“#include ”时我得到: 1>LINK : fatal error LNK1104: 无法打开文件 'libboost_regex-vc100-mt-gd-1_39.lib'
不知道为什么我得到这个,我从这里下载了库,而我有一个名为“libboost_regex-”的库vc90-mt-gd-1_39.lib 我没有一个名为“libboost_regex-vc100-mt-gd-1_39.lib”的库,将 vc90 重命名为 vc100 可以,但我不确定这是否是理想的解决方案?
#include "stdafx.h"
#include <regex>
#include <boost/array.hpp>
#include <boost/regex.hpp>
#define BOOST_ALL_NO_LIB
int _tmain(int argc, _TCHAR* argv[])
{
boost::array<int, 10> a;
boost::smatch s;
getchar();
return 0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能使用的是 Visual Studio 2010(这是 vc100 的来源),但下载的库是使用 2008 (vc9) 构建的,
Visual Studio 2010 附带 TR1,包括
并享受。You are probably using Visual Studio 2010 (this is where vc100 comes from), but the downloaded lib was built with 2008 (vc9)
Visual Studio 2010 comes with TR1, include
<regex>
and enjoy.