numpy.distutils.ccompiler.CCompiler_compile#
- distutils.ccompiler.CCompiler_compile(self, sources, output_dir=None, macros=None, include_dirs=None, debug=0, extra_preargs=None, extra_postargs=None, depends=None)[源代码]#
编译一个或多个源文件。
有关更多详细信息,请参阅 Python distutils API 参考。
- 参数:
- sourceslist of str
文件名列表
- output_dirstr, 可选
输出目录的路径。
- macroslist of tuples
宏定义列表。
- include_dirslist of str, 可选
仅在此编译中添加到默认包含文件搜索路径的目录。
- debugbool, 可选
是否在目标文件内部或旁边输出调试符号。
- extra_preargs, extra_postargs?
额外的预参数和后参数。
- dependslist of str, 可选
所有目标都依赖的文件名列表。
- 返回:
- objectslist of str
每个源文件 sources 对应一个目标文件名的列表。
- 引发:
- CompileError
如果编译失败。