9

我正在尝试编译我的程序,但它根本不会链接。我已经指定了 boost lib 文件的路径,但链接器仍然抱怨。这是我得到的链接错误:

1>Edproj.obj : error LNK2001: unresolved external symbol "class boost::system::error_category const & __cdecl boost::system::system_category(void)" (?system_category@system@boost@@YAABVerror_category@12@XZ)
1>Edproj.obj : error LNK2001: unresolved external symbol "class boost::system::error_category const & __cdecl boost::system::generic_category(void)" (?generic_category@system@boost@@YAABVerror_category@12@XZ)
1>Edproj.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall boost::detail::thread_data_base::~thread_data_base(void)" (??1thread_data_base@detail@boost@@UAE@XZ)
1>Edproj.obj : error LNK2001: unresolved external symbol "void __cdecl boost::throw_exception(class std::exception const &)" (?throw_exception@boost@@YAXABVexception@std@@@Z)
1>Edproj.obj : error LNK2001: unresolved external symbol "public: void __thiscall boost::thread::detach(void)" (?detach@thread@boost@@QAEXXZ)
1>Edproj.obj : error LNK2001: unresolved external symbol "public: void __thiscall boost::thread::join(void)" (?join@thread@boost@@QAEXXZ)
1>Edproj.obj : error LNK2001: unresolved external symbol "private: void __thiscall boost::thread::start_thread(void)" (?start_thread@thread@boost@@AAEXXZ)
1>Edproj.obj : error LNK2001: unresolved external symbol "bool __cdecl boost::this_thread::interruptible_wait(void *,struct boost::detail::timeout)" (?interruptible_wait@this_thread@boost@@YA_NPAXUtimeout@detail@2@@Z)

BOOST_LIB_DIAGNOSTIC 返回

1>  Linking to lib file: libboost_thread-vc100-mt-s-1_52.lib
1>  Linking to lib file: libboost_date_time-vc100-mt-s-1_52.lib
1>  Linking to lib file: libboost_system-vc100-mt-s-1_52.lib
1>  Linking to lib file: libboost_chrono-vc100-mt-s-1_52.lib

更多信息:

我正在运行 64 位 Windows 8 Pro,并使用以下选项编译了 boost

bjam --build-type=complete --toolset=msvc10.0 address-model=64 architecture=x86 variant=debug,release threading=multi link=static runtime-link=static

有人可以告诉我有什么问题吗?

更新:

在更改为 boost 1.51 后,它消除了 8 个链接器错误中的 7 个,但这一个仍然存在

error LNK2001: unresolved external symbol "void __cdecl boost::throw_exception(class std::exception const &)" (?throw_exception@boost@@YAXABVexception@std@@@Z)

我不明白这里发生了什么。这个来自 boostpro 32 位安装程序。它与我的源文件无关吗?

更新 :

好的,我已经为 boost 1.51 解决了这个问题。结果在属性页 >> C/C++ >> 代码生成 >> 启用 C++ 异常对我来说是关闭的。

好的。我将尝试查看相同的设置是否可以解决 boost 1.52 的问题。稍后会更新。

4

4 回答 4

1

我之前也遇到过同样的问题:我使用默认参数构建 boost lib,直接运行bootstrap.bat

如果您在项目中使用boost::system,则应使用并指定 x86 或 x64 版本的 boost::system 库。

您可以使用此 bat 重新编译 boost lib,将它们保存到 boost 根文件夹并在 CMD 窗口中运行(不要双击!):

call "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" x86

cd boost_1_60_0
call bootstrap.bat

rem Most libraries can be static libs
b2 -j8 toolset=msvc-14.0 address-model=64 architecture=x86 link=static threading=multi runtime-link=shared --build-type=minimal stage --stagedir=stage/x64
b2 -j8 toolset=msvc-14.0 address-model=32 architecture=x86 link=static threading=multi runtime-link=shared --build-type=minimal stage --stagedir=stage/win32

pause

有关更多详细信息,您可以查看这篇文章: https ://studiofreya.com/2015/12/19/how-to-build-boost-1-60-with-visual-studio-2015/

于 2016-04-17T08:45:56.663 回答
0

谢谢在我看来它没有正确的自动链接。

Include path is boost152/ only
Library path is boost152/stage/lib
于 2013-02-03T17:41:59.443 回答
0

下面这两个定义弄乱了我的链接器,抛出了一个漂亮的“LNK2001:未解析的外部符号”错误。那么你的代码中有什么地方吗?

//#define BOOST_FILESYSTEM_NO_DEPRECATED
//#define BOOST_FILESYSTEM_NO_LIB
于 2014-12-07T03:03:07.227 回答
0

确保将正确的目录添加到链接器属性中。

阅读这篇文章以了解更多详细信息 Boost 链接器错误:未解决的外部符号“class boost::system::error_category const & __cdecl boost::system::get_system_category(void)”

您还必须将此路径添加到链接器添加目录中:

$(BOOST_ROOT)\bin.v2\libs\thread\build\msvc-xx.0\release\address-model-64\link-static\threading-multi

其中 xx 是您的视觉工作室版本

于 2013-02-03T17:34:31.630 回答