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


Python Options.cwd_launch方法代码示例

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


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

示例1: find_program

# 需要导入模块: from waflib import Options [as 别名]
# 或者: from waflib.Options import cwd_launch [as 别名]
def find_program(program_name, env):
    launch_dir = os.path.abspath(Context.launch_dir)
    #top_dir = os.path.abspath(Options.cwd_launch)
    found_programs = []
    for obj in bld.all_task_gen:
        if not getattr(obj, 'is_ns3_program', False):
            continue

        ## filter out programs not in the subtree starting at the launch dir
        if not (obj.path.abspath().startswith(launch_dir)
                or obj.path.get_bld().abspath().startswith(launch_dir)):
            continue
        
        name1 = obj.name
        name2 = os.path.join(relpath(obj.path.abspath(), launch_dir), obj.name)
        names = [name1, name2]
        found_programs.extend(names)
        if program_name in names:
            return obj
    raise ValueError("program '%s' not found; available programs are: %r"
                     % (program_name, found_programs)) 
开发者ID:imec-idlab,项目名称:IEEE-802.11ah-ns-3,代码行数:23,代码来源:wutils.py

示例2: run_program

# 需要导入模块: from waflib import Options [as 别名]
# 或者: from waflib.Options import cwd_launch [as 别名]
def run_program(program_string, env, command_template=None, cwd=None, visualize=False):
    """
    if command_template is not None, then program_string == program
    name and argv is given by command_template with %s replaced by the
    full path to the program.  Else, program_string is interpreted as
    a shell command with first name being the program name.
    """
    dummy_program_name, execvec = get_run_program(program_string, command_template)
    if cwd is None:
        if (Options.options.cwd_launch):
            cwd = Options.options.cwd_launch
        else:
            cwd = Options.cwd_launch
    if visualize:
        execvec.append("--SimulatorImplementationType=ns3::VisualSimulatorImpl")
    return run_argv(execvec, env, cwd=cwd) 
开发者ID:imec-idlab,项目名称:IEEE-802.11ah-ns-3,代码行数:18,代码来源:wutils.py

示例3: run_python_program

# 需要导入模块: from waflib import Options [as 别名]
# 或者: from waflib.Options import cwd_launch [as 别名]
def run_python_program(program_string, env, visualize=False):
    env = bld.env
    execvec = shlex.split(program_string)
    if (Options.options.cwd_launch):
        cwd = Options.options.cwd_launch
    else:
        cwd = Options.cwd_launch
    if visualize:
        execvec.append("--SimulatorImplementationType=ns3::VisualSimulatorImpl")
    return run_argv([env['PYTHON'][0]] + execvec, env, cwd=cwd) 
开发者ID:imec-idlab,项目名称:IEEE-802.11ah-ns-3,代码行数:12,代码来源:wutils.py


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