Boost.Python在Windows/MSVC10下的链接错误

3

我使用正确的Python配置,使用b2编译了boost 1.50.0库。以下是b2 --debug-configuration命令的相关输出:

notice: [python-cfg] Configuring python...
notice: [python-cfg]   user-specified cmd-or-prefix: "C:\Python33z\python"
notice: [python-cfg] Checking interpreter command "C:\Python33z\python"...
notice: [python-cfg] running command 'DIR /-C /A:S "C:\Python33z\python.exe" 2>&
1'
notice: [python-cfg] running command '"C:\Python33z\python" -c "from sys import
*; print('version=%d.%d\nplatform=%s\nprefix=%s\nexec_prefix=%s\nexecutable=%s'
% (version_info[0],version_info[1],platform,prefix,exec_prefix,executable))" 2>&
1'    notice: [python-cfg] Configuring python...
notice: [python-cfg]   user-specified cmd-or-prefix: "C:\Python33z\python"
notice: [python-cfg] Checking interpreter command "C:\Python33z\python"...
notice: [python-cfg] running command 'DIR /-C /A:S "C:\Python33z\python.exe" 2>&
1'
notice: [python-cfg] running command '"C:\Python33z\python" -c "from sys import
*; print('version=%d.%d\nplatform=%s\nprefix=%s\nexec_prefix=%s\nexecutable=%s'
% (version_info[0],version_info[1],platform,prefix,exec_prefix,executable))" 2>&
1'
notice: [python-cfg] ...requested configuration matched!
notice: [python-cfg] Details of this Python configuration:
notice: [python-cfg]   interpreter command: "C:\Python33z\python"
notice: [python-cfg]   include path: "C:\Python33z\Include"
notice: [python-cfg]   library path: "C:\Python33z\libs"
notice: [python-cfg]   DLL search path: "C:\Python33z"
notice: [msvc-cfg] msvc-10.0 detected, command: 'C:\Program Files (x86)\Microsof
t Visual Studio 10.0\VC\bin\cl.exe'
notice: will use 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\cl.
exe' for msvc, condition <toolset>msvc-10.0

...updating 4 targets...
msvc.archive bin.v2\libs\python\build\msvc-10.0\debug\link-static\threading-mult
i\libboost_python3-vc100-mt-gd-1_50.lib
common.copy stage\lib\libboost_python3-vc100-mt-gd-1_50.lib
bin.v2\libs\python\build\msvc-10.0\debug\link-static\threading-multi\libboost_py
thon3-vc100-mt-gd-1_50.lib
        1 file(s) copied.
msvc.archive bin.v2\libs\python\build\msvc-10.0\release\link-static\threading-mu
lti\libboost_python3-vc100-mt-1_50.lib
common.copy stage\lib\libboost_python3-vc100-mt-1_50.lib
bin.v2\libs\python\build\msvc-10.0\release\link-static\threading-multi\libboost_
python3-vc100-mt-1_50.lib
        1 file(s) copied.
...updated 4 targets...


The Boost C++ Libraries were successfully built!

我已经正确设置了链接器目录,并链接到相应的输出文件(发布版本使用libboost_python3-vc100-mt-1_50.lib,调试版本使用libboost_python3-vc100-mt-gd-1_50.lib)。我正在使用自编译的Python分发版,但我也尝试过标准版,结果并没有任何不同。
当我编译时出现以下链接错误:
error LNK2019: unresolved external symbol "__declspec(dllimport) protected: __thiscall boost::python::detail::str_base::str_base(char const *)" (__imp_??0str_base@detail@python@boost@@IAE@PBD@Z) referenced in function "public: __thiscall boost::python::str::str(char const *)" (??0str@python@boost@@QAE@PBD@Z)
error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall boost::python::detail::str_base::~str_base(void)" (__imp_??1str_base@detail@python@boost@@QAE@XZ) referenced in function "public: __thiscall boost::python::str::~str(void)" (??1str@python@boost@@QAE@XZ)
error LNK2019: unresolved external symbol "__declspec(dllimport) class boost::python::api::object __cdecl boost::python::import(class boost::python::str)" (__imp_?import@python@boost@@YA?AVobject@api@12@Vstr@12@@Z) referenced in function _main
fatal error LNK1120: 3 unresolved externals

产生这些错误的测试代码如下所示:
using namespace boost::python;
object main_module = import("__main__");

我使用了相同的构建配置并且没有遇到任何问题,同时也使用了Boost.Filesystem库。希望有人能够帮我解决这个问题,因为它让我感到非常困惑!更新:我刚刚阅读了一些关于宏定义 BOOST_PYTHON_STATIC_LIB 的模糊文字;我不确定我是否在正确的方向上解决了这个问题(因为在构建过程中好像没有提到),但无论如何,它给我带来了更加混乱的错误。
LINK : fatal error LNK1104: cannot open file 'python27.lib'

我不知道为什么它试图链接那个库,因为python-cfg输出清楚地显示它已经找到了我的python33分发包(我的应用程序已经链接了python33.lib)。

1个回答

5
第一个问题:事实证明定义BOOST_PYTHON_STATIC_LIB确实是修复无法解析的外部链接错误的正确方法。当链接静态库时,出现这个定义似乎是必要的;这似乎很显然,但在这里没有提到:http://www.boost.org/doc/libs/1_50_0/libs/python/doc/building.html
第二个问题:添加了该定义后,下一个链接错误发生在我在使用正确的Python配置重新构建之前没有运行

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接