cygwin windows7-64bit中的一些ns-3构建错误

时间:2016-10-21 05:33:41

标签: cygwin ns-3

最近我需要在ns-3中进行一些网络仿真,但ns-3正在Linux上工作。所以我在我的Windows 7上安装了一个cygwin并安装了'Base''Devel''Python'模块,就像教程所示。

第一个问题是当我使用命令

构建ns-3时
./build.py

然后它表现出像

这样奇怪的东西
$ ./build.py
# Skip NetAnim (platform not supported)
# Build NS-3
Entering directory `./ns-3-dev'
Note: configuring ns-3 without pybindgen
 =>  /usr/bin/python waf configure
Setting top to                           : /home/Dell/workspace/ns-3-allinone/ns-3-dev
Setting out to                           : /home/Dell/workspace/ns-3-allinone/ns-3-dev/build
Checking for 'gcc' (C compiler)          : /usr/bin/gcc
Checking for cc version                  : 5.4.0
Checking for 'g++' (C++ compiler)        : /usr/bin/g++
Python is not supported in CygWin environment.  Try MingW instead.

最后一行很奇怪,因为它跳过了python检查,但行

'configure' finished successfully (45.850s)

仍然出现。 我应该忽略它吗?

第二个问题是当建筑继续进行时,像

那样
[ 966/1741] Compiling src/spectrum/model/aloha-noack-mac-header.cc
../src/wifi/model/dsss-error-rate-model.cc: In static function ‘static double ns3::DsssErrorRateModel::DqpskFunction(double)’:
../src/wifi/model/dsss-error-rate-model.cc:38:54: Error:‘M_PI’ is not declared in this scope.
   return ((std::sqrt (2.0) + 1.0) / std::sqrt (8.0 * M_PI * std::sqrt (2.0)))
                                                      ^

Waf: Leaving directory `/home/Dell/workspace/ns-3-allinone/ns-3-dev/build'
Build failed

表现为。所以我搜索了这个问题,发现它可能是由我的c编译器引起的。但没有解决方案。

那我该怎么办? (抱歉,我的英语不好......)

1 个答案:

答案 0 :(得分:0)

问题解决了。我必须忘记一些必要的插件。如果你有同样的问题,只需从互联网上找到一个安装列表,并确保使用“sudo”命令安装所有插件,如g ++和python。