Hi,
I'm trying to run script with gdb while passing it command line arguments, but it looks like I can't do it. For example, if I run first.cc with command line argument, I will do
>./waf --run "first --ns3::PointToPointNetDevice::DataRate=10Mbps"
If I run first.cc with gdb, I'll do
>./waf --run first --command-template="gdb %s"
But I can't do them together like
>./waf --run "first --ns3::PointToPointNetDevice::DataRate=10Mbps" --command-template="gdb %s"
Any idea, or suggestion?
Kelly