当前位置: 首页>>代码示例>>Python>>正文


Python ccompiler.get_default_compiler方法代码示例

本文整理汇总了Python中distutils.ccompiler.get_default_compiler方法的典型用法代码示例。如果您正苦于以下问题:Python ccompiler.get_default_compiler方法的具体用法?Python ccompiler.get_default_compiler怎么用?Python ccompiler.get_default_compiler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在distutils.ccompiler的用法示例。


在下文中一共展示了ccompiler.get_default_compiler方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _build_universal

# 需要导入模块: from distutils import ccompiler [as 别名]
# 或者: from distutils.ccompiler import get_default_compiler [as 别名]
def _build_universal(tmpdir, ext, cpython_include_dirs):
    from distutils.ccompiler import new_compiler, get_default_compiler
    from distutils.sysconfig import customize_compiler

    compiler = new_compiler(get_default_compiler())
    customize_compiler(compiler)

    include_dirs = ext.include_dirs + cpython_include_dirs
    objects = compiler.compile(ext.sources,
                               output_dir=tmpdir,
                               macros=[('HPY_UNIVERSAL_ABI', None)],
                               include_dirs=include_dirs,
                               extra_preargs=ext.extra_compile_args)

    filename = ext.name + '.hpy.so'
    compiler.link(compiler.SHARED_LIBRARY,
                  objects,
                  filename,
                  tmpdir,
                  extra_preargs=ext.extra_link_args,
                  # export_symbols=...
                  )
    return os.path.join(tmpdir, filename) 
开发者ID:pyhandle,项目名称:hpy,代码行数:25,代码来源:support.py

示例2: get_compiler

# 需要导入模块: from distutils import ccompiler [as 别名]
# 或者: from distutils.ccompiler import get_default_compiler [as 别名]
def get_compiler(self):
        """Return the C compiler used for building the extension."""
        return self.compiler or get_default_compiler() 
开发者ID:wang502,项目名称:slack-sql,代码行数:5,代码来源:setup.py


注:本文中的distutils.ccompiler.get_default_compiler方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。