本文整理汇总了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
示例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