4

我正在使用由 BoostPro Computing 安装程序安装的 boost 库。我在 Windows 7 64 位机器上使用 VS 2010。我想动态链接到 boost,所以我在安装程序中选择了前两个选项(多线程调试 DLL 和多线程 DLL,我相信它们被调用了)。一些已安装库的示例是:

boost_bzip2-vc100-mt-1_51.lib
boost_bzip2-vc100-mt-gd-1_51.lib

在我的项目中链接到 boost 时,我还确保定义BOOST_ALL_DYN_LINK. 我专门使用该filesystem工具集。

当我打开时,BOOST_LIB_DIAGNOSTIC我在构建输出中看到以下消息:

1>  Linking to lib file: boost_filesystem-vc100-mt-gd-1_51.lib
1>  Linking to lib file: boost_system-vc100-mt-gd-1_51.lib

然而,这些很快被跟进:

1>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const __thiscall boost::filesystem::path::string(void)const " (__imp_?string@path@filesystem@boost@@QBE?BV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) referenced in function _main
1>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall boost::filesystem::path::~path(void)" (__imp_??1path@filesystem@boost@@QAE@XZ) referenced in function _main
1>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) class boost::filesystem::path __cdecl boost::filesystem::detail::unique_path(class boost::filesystem::path const &,class boost::system::error_code *)" (__imp_?unique_path@detail@filesystem@boost@@YA?AVpath@23@ABV423@PAVerror_code@system@3@@Z) referenced in function "class boost::filesystem::path __cdecl boost::filesystem::unique_path(class boost::filesystem::path const &)" (?unique_path@filesystem@boost@@YA?AVpath@12@ABV312@@Z)
1>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class std::codecvt<wchar_t,char,int> const & __cdecl boost::filesystem::path::codecvt(void)" (__imp_?codecvt@path@filesystem@boost@@SAABV?$codecvt@_WDH@std@@XZ) referenced in function "public: __thiscall boost::filesystem::path::path<char const [20]>(char const (&)[20],void *)" (??$?0$$BY0BE@$$CBD@path@filesystem@boost@@QAE@AAY0BE@$$CBDPAX@Z)
1>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) void __cdecl boost::filesystem::path_traits::convert(char const *,char const *,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &,class std::codecvt<wchar_t,char,int> const &)" (__imp_?convert@path_traits@filesystem@boost@@YAXPBD0AAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@ABV?$codecvt@_WDH@5@@Z) referenced in function "void __cdecl boost::filesystem::path_traits::dispatch<class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &,class std::codecvt<wchar_t,char,int> const &)" (??$dispatch@V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@@path_traits@filesystem@boost@@YAXABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@4@ABV?$codecvt@_WDH@4@@Z)
1>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) class boost::system::error_category const & __cdecl boost::system::generic_category(void)" (__imp_?generic_category@system@boost@@YAABVerror_category@12@XZ) referenced in function "void __cdecl boost::system::`dynamic initializer for 'posix_category''(void)" (??__Eposix_category@system@boost@@YAXXZ)
1>main.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) class boost::system::error_category const & __cdecl boost::system::system_category(void)" (__imp_?system_category@system@boost@@YAABVerror_category@12@XZ) referenced in function "void __cdecl boost::system::`dynamic initializer for 'native_ecat''(void)" (??__Enative_ecat@system@boost@@YAXXZ)

不应该auto-link.hpp为我处理我的链接吗?我没有特别要求将任何内容链接到该项目,因为自动链接器似乎可以正确识别所有内容。那么我怎么会错过这些东西呢?此外,它们被声明为dllimport,所以链接器不应该让它们单独存在并期望它们在运行时被发现吗?

谢谢!

更新:我决定深入研究第二个链接器错误。它基本上是说它找不到path类的析构函数。dumpbin在库上运行后filesystem,我注意到这一行在文件中

??1path@filesystem@boost@@QEAA@XZ (public: __cdecl boost::filesystem::path::~path(void))

但这显然与链接器正在寻找的内容不匹配,即:

"__declspec(dllimport) public: __thiscall boost::filesystem::path::~path(void)" (__imp_??1path@filesystem@boost@@QAE@XZ)

请注意,链接器正在寻找 DLL 导入版本,但库本身似乎没有提供...

4

3 回答 3

5

对我来说,这是因为“将 wchar_t 视为内置类型”选项设置为 false,因此wchar_t编译为unsigned short.

于 2013-03-01T21:27:54.803 回答
4

假设您已经编译了这些 .lib,您需要确保 .lib 文件位于库路径中(查看 VC++ 目录 -> 库路径)。

编译器将在编译时放置指向 DLL 的链接,使用 .lib 来发现正确的入口点等,因此当 EXE/DLL 在运行时启动时可以有效地加载它们。

您所说的运行时 DLL 发现类型需要 LoadLibrary + GetProcAddress 类型代码,Boost 不支持。

(静态链接实际上将静态编译的 .lib 代码中的代码放入您的 DLL/EXE 中。)

编辑:另外,请检查您是否为您的架构使用了正确的 .lib 文件,例如 32 位或 64 位。这会导致签名出现类似错误。

dumpbin /headers 

将告诉您.lib 是为哪种“机器”类型构建的(dumpbin 输出的第一部分)。

于 2012-10-03T19:29:08.033 回答
1

(从您的未解决列表中)调用约定有所不同。这将导致符号不匹配。我发现如果您尝试使用 _ cdecl 以外的其他库作为 Windows 上的调用约定进行编译,1.54.0 将不会编译所有库。Windows 喜欢许多不同的调用约定,它们不会匹配( _cdecl /Gd、__stdcall /Gz、__FASTCALL /Gr)另外,至少在 1.54.0 中,我注意到某些库需要将 wchar_t 视为内置输入类型(Windows VS 选项 /Zc:wchar_t)(肯定是 boost::log 库)。这也会导致未解决的错误,因为在这种情况下 wchar_t 与 unsigned short 不匹配。

于 2013-09-12T17:49:24.610 回答