Open JoseCraibas opened 4 years ago
Thanks for the descriptive bug report. I was able to reproduce and will look into fixing it.
I was able to work around by patching this wscript:
diff --git a/myscripts/dce-mpi-udp/wscript b/myscripts/dce-mpi-udp/wscript
index 173cf60..363584e 100644
--- a/myscripts/dce-mpi-udp/wscript
+++ b/myscripts/dce-mpi-udp/wscript
@@ -3,7 +3,7 @@
import ns3waf
def configure(conf):
- ns3waf.check_modules(conf, ['core', 'internet', 'point-to-point', 'mpi'], mandatory = True)
+ ns3waf.check_modules(conf, ['core', 'internet', 'point-to-point'], mandatory = True)
def build(bld):
if bld.env['MPI']:
Description of the problem
Hi all, I am trying to integrate ns-3 with DCE to perform MPTCP tests, however, when I try to do so, I receive a message that ns-3-mpi library is not present (Checking for libns3-dev-mpi-debug (mandatory) : not found). I am using the command bake deploy -vvv.
output of ./waf configure
Steps to reproduce