c++作为模块扩展python

具体参考这里:基于 Boost 库实现的 Python 调用 C++ 接口

错误1:undefined symbol: PyUnicodeUCS2_AsUTF8String

原因:
c++编译采用的是ucs2,系统python用的是ucs4(可以通过sys.maxunicode查看是否大于65525)
参考:http://effbot.org/pyfaq/when-importing-module-x-why-do-i-get-undefined-symbol-pyunicodeucs2.htm

办法:
重新编译一个python或者重新编译你的库(csdn有个人提到编译库的方法,但是没说具体怎么编译,不知道怎样加入usc2,没找到方法)

cd Python-2.7.3- 
./configure --prefix=/home/xxx/opt/python2.7 --enable-unicode=ucs2 && make
sudo make install

这样会在/home/xxx/opt/python2.7下生成ucs2的python版本,重新指定Makefile的python路径,make,

错误2: 提示:

g++ -std=c++11 -I/opt/include/python2.7 -I/home/zishuai/boost/include -fPIC -o foo.o -c foo.cc
g++ -std=c++11 -I/opt/include/python2.7 -I/home/zishuai/boost/include -fPIC -o pymodule.o -c pymodule.cc
g++ -std=c++11 -shared -Wl,--export-dynamic foo.o pymodule.o -L/home/zishuai/boost/lib -lboost_python -L/opt/lib/python2.7/config -lpython2.7 -o foo.so
/usr/bin/ld: /opt/lib/python2.7/config/libpython2.7.a(abstract.o): relocation R_X86_64_32S against `_Py_NotImplementedStruct' can not be used when making a shared object; recompile with -fPIC
/opt/lib/python2.7/config/libpython2.7.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
make: *** [foo.so] Error 1

意思是:编译python时要指定 -fPIC,怎么指定呢?看python文件夹下的./configure 有个--enable-shared,就是它:

./configure --prefix=/opt --enable-unicode=ucs2 --enable-shared && make
然后sudo make install
终于成功了!!!

warning: 再次make c++工程:提示:

g++ -std=c++11 -I/opt/include/python2.7 -I/home/zishuai/boost/include -fPIC -o foo.o -c foo.cc
g++ -std=c++11 -I/opt/include/python2.7 -I/home/zishuai/boost/include -fPIC -o pymodule.o -c pymodule.cc
g++ -std=c++11 -shared -Wl,--export-dynamic foo.o pymodule.o -L/home/zishuai/boost/lib -lboost_python -L/opt/lib/python2.7/config -lpython2.7 -o foo.so
/opt/lib/python2.7/config/libpython2.7.a(posixmodule.o): In function `posix_tmpnam':
/home/zishuai/Downloads/Python-2.7.13/./Modules/posixmodule.c:7614: warning: the use of `tmpnam_r' is dangerous, better use `mkstemp'
/opt/lib/python2.7/config/libpython2.7.a(posixmodule.o): In function `posix_tempnam':
/home/zishuai/Downloads/Python-2.7.13/./Modules/posixmodule.c:7561: warning: the use of `tempnam' is dangerous, better use `mkstemp'

python3.x 把tmpnam_r移除了(http://bugs.python.org/issue17880),不用管这个警告,没事的,或者选用3.x版本。

错误3:error while loading shared libraries: ./libc.so.6: ELF file OS ABI invalid

原因:1. 我把虚拟机编译好的.so库copy到服务器上了,服务器和虚拟机版本不一致,各种库的不一致,导致这个问题。

  1. 在服务器编译.so后,运行如果提示这个错误的话,那就是服务器python版本的编译版本太老了,运行 python:
Python 2.7.3 (default, Dec 23 2016, 16:48:53) 
[GCC 3.4.5 20051201 (Red Hat 3.4.5-2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.

是gcc 3.4.5编译的,太老了,重新编译个python
版本,方法见上。

错误4: ImportError: /lib64/tls/libc.so.6: versionGLIBC_2.14' not found (required by /opt/compiler/gcc-4.8.2/lib/libstdc++.so.6)`

原因不明,可能是因为python版本问题,解决中。。。。


果然还是python编译版本问题。

错误5: ImportError: libboost_python.so.1.62.0: cannot open shared object file: No such file or directory

.bashrc中配置:

LD_LIBRARY_PATH=/xxx/boost/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH

然后在当前运行python脚本的终端 source下.bashrc

出了这么多问题~~~~

c++作为模块扩展python_第1张图片
图片来自网络

你可能感兴趣的:(c++作为模块扩展python)