ネットワークエミュレータのインストール中にエラーが発生しました。

ネットワークエミュレータのインストール中にエラーが発生しました。

ns2.34こんにちは、Fedoraのインストール中に次のエラーが発生しました。

解決するのに役立ちます

collect2: ld returned 1 exit status
make: *** [Makefile:420: ns] Error 1
Ns make failed 

ベストアンサー1

完全なエラーは次のとおりです。

2. ERROR
tools/ranvar.cc: In member function ‘virtual double GammaRandomVariable::value()’:
tools/ranvar.cc:219:70: error: cannot call constructor ‘GammaRandomVariable::GammaRandomVariable’ directly [-fpermissive]
tools/ranvar.cc:219:70: error:   for a function-style cast, remove the redundant ‘::GammaRandomVariable’ [-fpermissive]
make: *** [tools/ranvar.o] Error 1

この問題の解決策は次のとおりです。

、ラインns-2.34/tools/ranvar.cc219

変える

-return GammaRandomVariable::GammaRandomVariable(1.0 + alpha_, beta_).value() * pow (u, 1.0 / alpha_);

そして

+return GammaRandomVariable(1.0 + alpha_, beta_).value() * pow (u, 1.0 / alpha_);

おすすめ記事