针对自定义 python 构建提升

Posted

技术标签:

【中文标题】针对自定义 python 构建提升【英文标题】:building boost against custom python 【发布时间】:2017-11-07 16:40:23 【问题描述】:

我正在尝试针对我的自定义 python 构建编译 boost 并得到“未定义的引用”错误。详细信息如下:

1) 我根据 Autodesk maya 的要求构建了支持 unicode=ucs4 的 python

./configure --prefix=/v/pkgs/python/dep/2.7.14 --enable-unicode=ucs4
make
make install

2) 使用此命令构建 boost

b2 -j 4 --layout=versioned --build-type=complete --debug-configuration stage

并配置文件 ./tools/build/src/user-config.jam 以使用我的 python 构建。

using python
    : 2.7
    : /v/pkgs/python/dep/2.7.14
    ;

这是b2输出的一部分,用于确认python选择成功:

notice: [python-cfg] Configuring python...
notice: [python-cfg]   user-specified version: "2.7"
notice: [python-cfg]   user-specified cmd-or-prefix: "/v/pkgs/python/dep/2.7.14"
notice: [python-cfg] Checking interpreter command "/v/pkgs/python/dep/2.7.14/bin/python2.7"...
notice: [python-cfg] running command '/v/pkgs/python/dep/2.7.14/bin/python2.7 -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: "/v/pkgs/python/dep/2.7.14/bin/python2.7"
notice: [python-cfg]   include path: "/v/pkgs/python/dep/2.7.14/include/python2.7"
notice: [python-cfg]   library path: "/v/pkgs/python/dep/2.7.14/lib/python2.7/config" "/v/pkgs/python/dep/2.7.14/lib"

3) 为了验证我尝试构建以下 test.cpp

#include <Python.h>
#include <boost/python.hpp>
int main ()

    Py_Initialize();
    boost::python::object obj;
    return 0;

使用此命令(新行更易于阅读):

g++ -g -O2 
-I/v/pkgs/python/dep/2.7.14/include/python2.7 
-I/v/pkgs/boost/dep/1_61_0 
-L/v/pkgs/boost/dep/1_61_0/stage/lib 
-lboost_python-gcc48-mt-1_61
-L/v/pkgs/python/dep/2.7.14/lib 
-lpython2.7 
./test.cpp

我收到以下错误:

/v/pkgs/boost/dep/1_61_0/stage/lib/libboost_python-gcc48-mt-1_61.so: undefined reference to `PyUnicodeUCS4_FromEncodedObject'
/v/pkgs/boost/dep/1_61_0/stage/lib/libboost_python-gcc48-mt-1_61.so: undefined reference to `PyUnicodeUCS4_AsWideChar'

欢迎任何提示,谢谢!

【问题讨论】:

【参考方案1】:

看来,python 不是用UCS-4 构建的,它是用UCS-2 构建的。 为了检查这一点,请在非常相似的问题上参考this answer。

【讨论】:

以上是关于针对自定义 python 构建提升的主要内容,如果未能解决你的问题,请参考以下文章

如何使用自定义 OpenSSL 编译 Python 3.4?

cmake 在自定义位置或库存位置找不到提升

使用 QtCreator 部署自定义构建项目

Python的神奇方法指南

python构建发布自定义模块

CMake:如何添加仅针对一种配置执行的自定义命令?