PySide安装问题

时间:2016-09-27 08:54:37

标签: linux qt cmake pyside configure

我在新的Xubuntu安装上有python2.7.9,尽管它是14.04。 PySide安装卡住Shiboken

Linking CXX shared library libshiboken-python2.7.so
/usr/bin/ld: /usr/local/lib/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
/usr/local/lib/libpython2.7.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
make[2]: *** [libshiboken/libshiboken-python2.7.so.1.2.2] Error 1
make[1]: *** [libshiboken/CMakeFiles/libshiboken.dir/all] Error 2
make: *** [all] Error 2
error: Error compiling shiboken

经过一些“谷歌搜索”后,我得出结论,问题可以通过--enable-shared选项添加./configure来解决。

以下文档尝试以多种方式安装Shiboken,但失败后,尝试在源文件中找到我无法配置的配置。

请帮忙。谢谢。

1 个答案:

答案 0 :(得分:4)

输出显示它试图链接静态python库而不是共享库 - 即 libpython2.7.a ,而不是 libpython2.7的.so

因此,它的 python 需要用--enable-shared重新编译,而不是shiboken。