使用distutils和build_clib来构建C库

时间:2013-05-31 09:27:29

标签: python cython

有没有人在distutils中使用build_clib命令从setup.py构建外部(非python)C库的好例子?关于这个问题的文件似乎很少或根本不存在。

我的目标是构建一个非常简单的外部库,然后构建一个链接到它的cython包装器。我发现的最简单的例子是here,但这会使用system()调用gcc,我无法想象这是最佳做法。

1 个答案:

答案 0 :(得分:15)

不是将库名称作为字符串传递,而是将带有源代码的元组传递给compile:

<强> setup.py

import sys
from distutils.core import setup
from distutils.command.build_clib import build_clib
from distutils.extension import Extension
from Cython.Distutils import build_ext

libhello = ('hello', {'sources': ['hello.c']})

ext_modules=[
    Extension("demo", ["demo.pyx"])
]

def main():
    setup(
        name = 'demo',
        libraries = [libhello],
        cmdclass = {'build_clib': build_clib, 'build_ext': build_ext},
        ext_modules = ext_modules
    )

if __name__ == '__main__':
    main()

<强>的hello.c

int hello(void) { return 42; }

<强> hello.h

int hello(void);

<强> demo.pyx

cimport demo
cpdef test():
    return hello()

<强> demo.pxd

cdef extern from "hello.h":
    int hello()

代码可用作要点:https://gist.github.com/snorfalorpagus/2346f9a7074b432df959