6

我正在 Ubuntu 平台上使用 cython。一切都很好,除了有一件事让我烦恼。将 cython 项目编译为 .so 文件时,.pyx 文件的文件名会附加“cpython-36m-x86_64-linux-gnu”。例如,如果我构建“helloworld.pyx”,则生成的 .so 文件称为:“helloworld.cpython-36m-x86_64-linux-gnu.so”。然而,我只希望它被称为“helloworld.so”。

我认为答案会很简单,所以我开始在谷歌上搜索,即使在 30 分钟后我也找不到任何关于该主题的内容。有人有什么主意吗?

这是我的 .pyx 文件:

print('hello world')

setup.py 文件:

from distutils.core import setup
from Cython.Build import cythonize

setup(
    ext_modules = cythonize("helloworld.pyx")
)

构建文件:

python setup.py build_ext --inplace
Compiling helloworld.pyx because it changed.
[1/1] Cythonizing helloworld.pyx
running build_ext
building 'helloworld' extension
gcc -pthread -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/home/**/anaconda3/include/python3.6m -c helloworld.c -o build/temp.linux-x86_64-3.6/helloworld.o
gcc -pthread -shared -L/home/**/anaconda3/lib -Wl,-rpath=/home/ed/anaconda3/lib,--no-as-needed build/temp.linux-x86_64-3.6/helloworld.o -L/home/**/anaconda3/lib -lpython3.6m -o /home/**/new_project/helloworld.cpython-36m-x86_64-linux-gnu.so
4

2 回答 2

4

你不能摆脱它,至少不能自动摆脱。PEP 3149 定义了要包含在已编译模块的文件名中的标签:https ://www.python.org/dev/peps/pep-3149/

该标签包括 Python 实现(此处cpython)、版本(此处36为 3.6)、编译时选项的标志(m用于使用 Python 的内存分配器,这是默认设置)。平台标签x86_64-linux-gnu不是 PEP 3149 的一部分,我不知道它是在哪里定义的。

这些更改是在 distutils 中实现的,而 cython 不是“罪魁祸首”:-)

包的导入名称不受此文件名的影响。

您是否有任何不遵守 PEP 3149 的具体原因?您可以通过手动发出链接器命令来替换设置文件的构建过程,但这不太方便。

于 2017-03-16T10:02:51.050 回答
4

/usr/lib/python3.6/disutils/command/build_ext.py只需在at 中更改一行

    def get_ext_filename(self, ext_name):

        from distutils.sysconfig import get_config_var
        ext_path = ext_name.split('.')
        ext_suffix = get_config_var('EXT_SUFFIX') 
        return os.path.join(*ext_path) + ext_suffix

在 Windows 上更改ext_suffix = get_config_var('EXT_SUFFIX')ext_suffix = ".so"".pyd"

就是这样,您不必再担心输出名称

于 2019-06-24T16:27:31.927 回答