build: (works around #14) add Waf option to run without building

This commit is contained in:
Tom Henderson
2019-04-03 15:34:32 -07:00
parent 5623f8ef82
commit c0997bc821
4 changed files with 46 additions and 0 deletions

View File

@@ -109,6 +109,16 @@ and the other is to use the --pyrun option to waf:
$ ./waf --pyrun examples/wireless/mixed-wireless.py
As of ns-3.30, a --pyrun-no-build option was added to allow the running of
a program without invoking a project rebuild. This option may be useful
to improve execution time when running the same program repeatedly but with
different arguments, such as from scripts. It can be used in place of
--pyrun such as:
.. sourcecode:: bash
$ ./waf --pyrun-no-build examples/wireless/mixed-wireless.py
To run a python script under the C debugger:
.. sourcecode:: bash