Hye friends and teachers,Please, Anyone know, How to resolve this issue?
Command [...] exited with code 255
--
thank you for helping
Posting to this group should follow these guidelines https://www.nsnam.org/wiki/Ns-3-users-guidelines-for-posting
---
You received this message because you are subscribed to the Google Groups "ns-3-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ns-3-users+...@googlegroups.com.
To post to this group, send email to ns-3-...@googlegroups.com.
Visit this group at https://groups.google.com/group/ns-3-users.
For more options, visit https://groups.google.com/d/optout.
On 09/28/2017 01:57 PM, hajji wajdi wrote:
Hye friends and teachers,Please, Anyone know, How to resolve this issue?
Command [...] exited with code 255
You should try a debugger.
$ sudo apt-get install gdb
$ ./waf --command-template="gdb %s" --run HadoopSim
(gdb) r 0 0 0 examples/HadoopSim/bench-trace/star.nettopo examples/HadoopSim/bench-trace/bayes/Trace 11 0
and see where it breaks, and then backtrace (bt) at the gdb prompt to look further, or perhaps step upwards with the 'up' command.
(gdb) bt
(gdb) up
(gdb) up
...