當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。