获取命令distutils传递给编译器

时间:2016-03-25 00:58:12

标签: python gcc command-line compilation distutils

假设我在setup.py脚本中使用此Python代码来构建C扩展:

from distutils.core import setup, Extension

module1 = Extension('demo', sources = ['demo.c'])

setup (name = 'PackageName',
       version = '1.0',
       description = 'This is a demo package',
       ext_modules = [module1])

够容易。现在我用这一行调用setup.py脚本:

C:/> python setup.py build_ext --compiler=mingw32

好的,但问题是什么?

当distutils调用mingw32并将所有必需的操作系统独立标志和选项传递给它时,它如何计算出这些标志?

distutils在哪里保留与每个平台相关的命令,以及如何访问它们?

1 个答案:

答案 0 :(得分:6)

它并不像一组选项那么简单,但你可以看到它是如何工作的。在你的python源目录中查找这个

distutils/ccompiler.py

在该文件中,每个编译器都有一个这样的条目

# Map compiler types to (module_name, class_name) pairs -- ie. where to
# find the code that implements an interface to this compiler.  (The module
# is assumed to be in the 'distutils' package.)
compiler_class = { 'unix':    ('unixccompiler', 'UnixCCompiler',
                               "standard UNIX-style compiler"),
                   'msvc':    ('msvccompiler', 'MSVCCompiler',
                               "Microsoft Visual C++"),
                   'cygwin':  ('cygwinccompiler', 'CygwinCCompiler',
                               "Cygwin port of GNU C Compiler for Win32"),
                   'mingw32': ('cygwinccompiler', 'Mingw32CCompiler',
                               "Mingw32 port of GNU C Compiler for Win32"),
                   'bcpp':    ('bcppcompiler', 'BCPPCompiler',
                               "Borland C++ Compiler"),
                   'emx':     ('emxccompiler', 'EMXCCompiler',
                               "EMX port of GNU C Compiler for OS/2"),
                 }    

您可以在

中找到您正在寻找的代码
distutils/cygwinccompiler.py

如果您编辑setup.py脚本并添加此

from distutils.core import setup,Extension
from distutils.cygwinccompiler import Mingw32CCompiler
from pprint import pprint

module1 = Extension('demo', sources = ['demo.c'])

m32 = Mingw32CCompiler()
pprint (vars(m32))


setup (name = 'PackageName',
   version = '1.0',
   description = 'This is a demo package',
   ext_modules = [module1])

你可以看到很多可用的选项......

{'archiver': ['ar', '-cr'],
 'compiler': ['gcc', '-O', '-Wall'],
 'compiler_cxx': ['g++', '-O', '-Wall'],
 'compiler_so': ['gcc', '-mdll', '-O', '-Wall'],
 'dll_libraries': None,
 'dllwrap_version': None,
 'dry_run': 0,
 'force': 0,
 'gcc_version': LooseVersion ('4.2.1'),
 'include_dirs': [],
 'ld_version': None,
 'libraries': [],
 'library_dirs': [],
 'linker_dll': 'dllwrap',
 'linker_exe': ['gcc'],
 'linker_so': ['dllwrap', '-mdll', '-static'],
 'macros': [],
 'objects': [],
 'output_dir': None,
 'preprocessor': None,
 'ranlib': ['ranlib'],
 'runtime_library_dirs': [],
 'verbose': 0}

要访问各个选项,您可以按如下方式使用它们。

print m32.compile
['gcc', '-O', '-Wall']

没有一套简单的旗帜。很多标志都是在运行时配置的,上面的代码显示你要查看它们是如何生成的等等。