zoukankan      html  css  js  c++  java
  • NS3编译运行

    程序前面导入的头文件(也是一系列的头文件组合在一起的模块头文件)放在../build/debug/ns3/ 下面。

    首先介绍一种最简单允许 examples 和 tests的方法:
    $./waf configure --enable-examples --enable-tests
    $./waf build

    1.当一次使用 build.py 运行
    禁止:  $ ./build.py
    允许:   $ ./build.py --enable-examples --enable-tests
    2.第一次使用 waf 运行build
    禁止: 
    $./waf configure
    $./waf build
    允许:
    $./waf configure --enable-examples --enable-tests
    $./waf build

     

    有一个文件记录了默认的配置信息,可以修改它的默认参数,即默认的是激活examples and tests 还是锁死:

    文件名叫utils/ .ns3rc文件  $ vim .ns3rc

    禁止: # Set this equal to true if you want examples to be run.
    examples_enabled = False

    # Set this equal to true if you want tests to be run.
    tests_enabled = False

    允许:
    # Set this equal to true if you want examples to be run.
    examples_enabled = True

    # Set this equal to true if you want tests to be run.
    tests_enabled = True

    配置好运行环境后,就可以用以下方式运行:

    ./waf --run  yourprogram    //yourprogram.cc

    ./waf --pyrun yourprogram.py

    debug 程序:

    ./waf --run yourProgram --command-template="gdb %s"

    编译好的可执行文件放在.../debug/example/...相应的目录里,自己可以查看到

    自己写好的程序放在scratch/目录下就可以直接运行了,放在其它目录下运行程序的配置我了不会啊,

    也没有找到相关方面的资料,有知道的提供下资料或连接,学习后可以补上。

  • 相关阅读:
    模拟登陆+数据爬取 (python+selenuim)
    matplotlib基本使用(矩形图、饼图、热力图、3D图)
    tensorflow进阶篇-4(损失函数1)
    CS231n学习笔记-图像分类笔记(下篇)
    CS231n学习笔记-图像分类笔记(上篇)
    numpy 基本使用1
    tensorflow基础篇-2
    tensorflow进阶篇-3
    tensorflow基础篇-1
    自定义滚动条第一版
  • 原文地址:https://www.cnblogs.com/lovemo1314/p/2298906.html
Copyright © 2011-2022 走看看