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


Python Logs.fatal方法代码示例

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


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

示例1: find_lcg

# 需要导入模块: from waflib import Logs [as 别名]
# 或者: from waflib.Logs import fatal [as 别名]
def find_lcg(ctx, **kwargs):
    
    ctx.load('hwaf-base', tooldir=_heptooldir)

    if not ctx.env.HWAF_FOUND_C_COMPILER:
        ctx.fatal('load a C compiler first')
        pass

    if not ctx.env.HWAF_FOUND_CXX_COMPILER:
        ctx.fatal('load a C++ compiler first')
        pass

    lcg_root = ctx.options.with_lcg
    if not osp.exists(lcg_root):
        msg.fatal("LCG: no such path [%s]" % lcg_root)
        return

    ctx.start_msg("LCG-hep-tools")
    ctx.end_msg(lcg_root)

    lcg_ext_root = ctx.options.with_lcg_ext_root
    ctx.start_msg("LCG-hep-tools externals")
    ctx.end_msg(lcg_ext_root)

    
    ctx.env.HWAF_FOUND_LCG = 1
    return
开发者ID:ChristianArnault,项目名称:hwaf,代码行数:29,代码来源:find_lcg.py

示例2: find_python_module

# 需要导入模块: from waflib import Logs [as 别名]
# 或者: from waflib.Logs import fatal [as 别名]
def find_python_module(ctx, module_name, condition='', **kwargs):
    
    ctx.load('hwaf-base', tooldir=_heptooldir)

    if not ctx.env.CXX and not ctx.env.CC:
        msg.fatal('load a C or C++ compiler first')
        pass

    if not ctx.env.HWAF_FOUND_PYTHON:
        ctx.find_python()
        pass

    found = False
    os_env = dict(os.environ)
    try:
        ctx.env.stash()
        env = ctx._get_env_for_subproc()
        for k,v in env.items():
            os.environ[k] = v
            pass
        ctx.check_python_module(module_name, condition)
        found = True
    except ctx.errors.ConfigurationError:
        os.environ = os_env
        ctx.env.revert()
        found = False
        pass
    finally:
        os.environ = os_env
        pass

    if not found and kwargs.get('mandatory', True):
        ctx.fatal("python module %s not found" % module_name)
    return
开发者ID:ChristianArnault,项目名称:hwaf,代码行数:36,代码来源:find_python.py


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