Hi,
thank you for your feedback.
At Fri, 19 Apr 2013 05:37:45 -0700 (PDT),
damien....@gmail.com wrote:
>
> [1 <text/plain; ISO-8859-1 (7bit)>]
> Hi all,
>
> I'm a beginner with ns-3 DCE.
>
> I built it for quagga execution upon ns3:
>
> > *bake.py configure -e dce-ns3 -e dce-quagga *
>
> and I ran the dce-quagga-ospfd example successfully. But then I looked at
> the ns-3-dce configuration:
>
> > */home/damien/workspace/dce/source/ns-3-dce/waf configure*
> >
>
> And now i can't run dce-quagga examples anymore:
>
> > *./waf --run dce-quagga-ospfd*
> > *Waf: Entering directory
> > `/home/damien/workspace/dce/source/ns-3-dce/build'
> > program 'dce-quagga-ospfd' not found; available programs are: ['test',
> > './lib/test']*
> >
>
> However examples are enabled according to the ./waf configure command:
>
> > *Example programs : enabled*
> >
>
> Could anyone explain me why ? I may misunderstood something.
./waf configure in bake specifies options listed below (this
is the case of dce-ns3):
<attribute name="configure_arguments" value="configure --with-ns3=$INSTALLDIR --with-elf-loader=$INSTALLDIR/lib --prefix=$INSTALLDIR"/>
so if you directly call './waf configure' in ns-3-dce, you
will miss several libraries need to build.
if you want to configure ns-3-dce after bake build, you can
simply call;
$ bake.py build
is that what you're looking for ?
-- Hajime