Open denture1 opened 6 months ago
Hey, the example that's failing there (the WiFI Bianchi one) fails because ns-3 has since changed the WiFi API.
You should be able to remove that example from the wscript
file in the examples/
directory and it should build.
These lines are at the bottom of the examples/wscript
file, remove them & reconfigure to take out the example that's failing to compile:
obj = bld.create_ns3_program('wifi-bianchi-netsimulyzer',
['netsimulyzer', 'core', 'mobility', 'network', 'wifi'])
obj.source = 'wifi-bianchi-netsimulyzer.cc'
Newer versions of the NetSimulyzer module (Version 1.0.8+) have this example removed from waf
builds by default as well. You should be able to upgrade to the latest version of the module and have this solved too
Edit: you'll need to remove the obj.source = 'wifi-bianchi-netsimulyzer.cc
as well, here's the full snip-it again:
obj = bld.create_ns3_program('wifi-bianchi-netsimulyzer',
['netsimulyzer', 'core', 'mobility', 'network', 'wifi'])
obj.source = 'wifi-bianchi-netsimulyzer.cc'
Hi,
After I installed Netsimulyzer for ns-3 3.35, I get the following error first.cc example. How do I resolve it?
The following NS-3 features:
Any help is appreciated! Thanks!