当尝试包含“#include ”时我得到: 1>LINK : fatal error LNK1104: 无法打开文件 'libboost_regex-vc100-mt-gd-1_39.lib'

发布于 2024-08-11 09:01:29 字数 515 浏览 6 评论 0 原文

不知道为什么我得到这个,我从这里下载了库,而我有一个名为“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;
}

Not sure why i get that, I downloaded libs from here and while I have a lib called 'libboost_regex-vc90-mt-gd-1_39.lib I don't have one which is called 'libboost_regex-vc100-mt-gd-1_39.lib', renaming the one with vc90 to vc100 works but I'm not sure if this is the ideal solution?

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二手情话 2024-08-18 09:01:29

您可能使用的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文