View | Details | Raw Unified | Return to bug 1511
Collapse All | Expand All

(-)a/doc/tutorial/source/getting-started.rst (+16 lines)
 Lines 298-303    Link Here 
298
  topology-read             uan                       virtual-net-device
298
  topology-read             uan                       virtual-net-device
299
  visualizer                wifi                      wimax
299
  visualizer                wifi                      wimax
300
300
301
  Waf: Leaving directory `/home/craigdo/repos/ns-3-allinone/ns-3.13/build'
302
  'build' finished successfully (2m30.586s)
303
  
304
You may also see something like:
305
306
::
307
308
  Modules not built (see ns-3 tutorial for explanation):
309
  click                     openflow                  visualizer     
310
311
This just means that some ns-3 modules that have dependencies on
312
outside libraries may not have been built, or that the configuration
313
specifically asked not to build them.  It does not mean that the 
314
simulator did not build successfully or that it will provide wrong 
315
results for the modules listed as being built.
316
301
Once the project has built, you can stop working with the
317
Once the project has built, you can stop working with the
302
``ns-3-allinone`` scripts.  You got what you needed from them and will now 
318
``ns-3-allinone`` scripts.  You got what you needed from them and will now 
303
interact directly with Waf and we do it in the |ns3| directory,
319
interact directly with Waf and we do it in the |ns3| directory,
(-)a/wscript (-1 / +1 lines)
 Lines 874-880    Link Here 
874
874
875
        # Print the list of enabled modules that were not built.
875
        # Print the list of enabled modules that were not built.
876
        if env['MODULES_NOT_BUILT']:
876
        if env['MODULES_NOT_BUILT']:
877
            print 'Modules not built:'
877
            print 'Modules not built (see ns-3 tutorial for explanation):'
878
            print_module_names(env['MODULES_NOT_BUILT'])
878
            print_module_names(env['MODULES_NOT_BUILT'])
879
            print
879
            print
880
880

Return to bug 1511