我从官方网站编译uwsgi版本x.y.zz.ww,我使用官方文档中建议的命令编译uwsgi
然后我使用官方文档中的命令编译了为Python建议的插件,我得到的错误输出是:
>ubuntu@ip-xx-yy-zz-ww:~/tmp/uwsgi-xx.yy.zz.ww$ PYTHON=python3.4 ./uwsgi --build-plugin "plugins/python python34"
*** uWSGI building and linking plugin from plugins/python ***
[gcc -pthread] python34_plugin.so
/usr/bin/ld: /usr/local/lib/python3.4/config-3.4m/libpython3.4m.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/python3.4/config-3.4m/libpython3.4m.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
*** unable to build python34 plugin ***
使用uwsgi而不从源代码编译它的替代方法是使用pip3 install uwsgi,在这种情况下插件是在 plugins / python / python_plugin.o 文件夹中编译但是找不到它。我正在为项目使用virtualenv,插件编译必须在根目录或lib文件夹中的virtualenv环境中?
答案 0 :(得分:1)
旧问题,但为了将来参考,我所做的是:
/ usr / bin / ld:/usr/local/lib/python3.4/config-3.4m/libpython3.4m.a(abstract.o):在制作时不能使用对“_Py_NotImplementedStruct”的重定位R_X86_64_32S共享对象; 使用-fPIC重新编译
这一行意味着你需要一个带有标志的-fPIC
的python构建,所以我卸载了python版本并使用这个标志重建。
在构建之前导出标志如下:
export CFLAGS="$CFLAGS -fPIC"
或者,如果您使用 pyenv
env PYTHON_CFLAGS=-fPIC pyenv install 3.5.x
现在使用这个python,你可以编译一个python插件:
python uwsgiconfig.py --plugin plugins/python core python35