文件名称:给出了我们例子所要用的完整的脚本代-xml文件格式
文件大小:8.88MB
文件格式:PDF
更新时间:2024-06-30 10:26:55
Python
方文档中找到 setup.py 和 setup()函数相关的信息。例 22.2 给出了我们例子所要用的完整的脚本代 码。 通过运行 setup.py 来编译和连接您的代码 现在,我们已经有了 setup.py 文件。运行 setup.py build 命令就可以开始编译我们的扩展了。 在我们的 Mac 机上的输出如下(使用不同版本的 Python 或是不一样的操作系统时,输出会有一些 不同): $ python setup.py build running build running build_ext building 'Extest' extension creating build creating build/temp.macosx-10.x-fat-2.x gcc -fno-strict-aliasing -Wno-long-double -no-cpp- precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -I/usr/include -I/usr/local/include -I/sw/include -I/ usr/local/include/python2.x -c Extest2.c -o build/ temp.macosx-10.x-fat-2.x/Extest2.o creating build/lib.macosx-10.x-fat-2.x gcc -g -bundle -undefined dynamic_lookup -L/usr/lib -L/ usr/local/lib -L/sw/lib -I/usr/include -I/usr/local/ include -I/sw/include build/temp.macosx-10.x-fat-2.x/ Extest2.o -o build/lib.macosx-10.x-fat-2.x/Extest.so 22.2.3 导入和测试 从 Python 中导入您的模块 E书家,更多编程电子书 http://www.chm-pdf.com