Closed stoza closed 3 years ago
I was actually facing the same problem. I couldn't figure out why it is happening. A quick and dirty way to bypass this problem is to comment out the code in ./myscripts/mt3/wscript and replace it with pass.
def build(bld):
pass
#bld.build_a_script('dce', needed = ['core', 'internet', 'dce', 'point-to-point', 'netanim', 'mobility'],
# target='bin/dce-mt3',
# source=['dce-mt3.cc'],
# )
Yes, the problem is that the examples need some alignment with changes to the ns-3 Wi-Fi API that have gone in since ns-3.32. I have a patch (off tree) to fix all of these and will try to commit soon. In the meantime, your change of disabling the problematic examples is fine as a workaround, or you can change:
YansWifiPhyHelper phy = YansWifiPhyHelper::Default ();
to
YansWifiPhyHelper phy;
Thank you!
This is now fixed in the master branch.
94de5084e7430bb51c8176cd99703e552e305391
Description of the problem
I'm trying to build ns3 following the quick start here https://www.nsnam.org/docs/dce/manual/html/getting-started.html. But every time I do this I have the following error (obtained by running bake.py deploy -vvv).
Steps to reproduce
Just follow the quick start given at https://www.nsnam.org/docs/dce/manual/html/getting-started.html
Thank a lot for your help!