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


Python Context.load_tool_default方法代码示例

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


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

示例1: load_tool

# 需要导入模块: from waflib import Context [as 别名]
# 或者: from waflib.Context import load_tool_default [as 别名]
def load_tool(tool, tooldir=None, ctx=None, with_sys_path=True):
	try:
		module = Context.load_tool_default(tool, tooldir, ctx, with_sys_path)
	except ImportError as e:
		if Options.options.download:
			module = download_tool(tool, ctx=ctx)
			if not module:
				ctx.fatal('Could not load the Waf tool %r or download a suitable replacement from the repository (sys.path %r)\n%s' % (tool, sys.path, e))
		else:
			ctx.fatal('Could not load the Waf tool %r from %r (try the --download option?):\n%s' % (tool, sys.path, e))
	return module
开发者ID:ArduPilot,项目名称:waf,代码行数:13,代码来源:use_config.py

示例2: load_tool

# 需要导入模块: from waflib import Context [as 别名]
# 或者: from waflib.Context import load_tool_default [as 别名]
def load_tool(tool, tooldir=None, ctx=None, with_sys_path=True):
	try:
		module = Context.load_tool_default(tool, tooldir, ctx, with_sys_path)
	except ImportError as e:
		if not ctx or not hasattr(Options.options, 'download'):
			Logs.error('Could not load %r during options phase (download unavailable at this point)' % tool)
			raise
		if Options.options.download:
			module = download_tool(tool, ctx=ctx)
			if not module:
				ctx.fatal('Could not load the Waf tool %r or download a suitable replacement from the repository (sys.path %r)\n%s' % (tool, sys.path, e))
		else:
			ctx.fatal('Could not load the Waf tool %r from %r (try the --download option?):\n%s' % (tool, sys.path, e))
	return module
开发者ID:blablack,项目名称:ams-lv2,代码行数:16,代码来源:use_config.py


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