我在安装ndnSIM (ns-3模块)时遇到了麻烦。今天我询问了安装ns-3的问题,但我解决不了这个问题。我找到了另一种安装ndnSIM的方法。
我引用了这个URL,并一步一步地遵循说明。
但是在ns-3/src/ndnSIM/ndn-cxx directory
中,当我配置(使用waf构建系统)时,我得到了一条错误消息。
是的,你是对的。
这是我前面提到的URL中的步骤7。下面是错误消息。
Setting top to : /home/juhyun-park/다운로드/ndnSIM/ns-3/src/ndnSIM/ndn-cxx
Setting out to : /home/juhyun-park/다운로드/ndnSIM/ns-3/src/ndnSIM/ndn-cxx/build
Building static library : no
Building shared library : yes
Checking for 'g++' (C++ compiler) : /usr/bin/g++
Checking supported CXXFLAGS : -std=c++11
Checking supported CXXFLAGS : -pedantic -Wall -O2 -g
Checking for program 'doxygen' : /usr/bin/doxygen
Checking for program 'tar' : /bin/tar
Checking for program 'sphinx-build' : /usr/bin/sphinx-build
Checking for std::is_default_constructible : yes
Checking for std::is_nothrow_move_constructible : yes
Checking for std::is_nothrow_move_assignable : yes
Checking for friend typename-specifier : yes
Checking for override and final specifiers : yes
Checking for std::vector::insert with const_iterators : no
Checking for program 'sh' : /bin/sh
Checking for library pthread : yes
Checking for library rt : yes
Checking for function getpass : yes
Checking for rtnetlink : yes
Checking for program 'pkg-config' : /usr/bin/pkg-config
Checking for 'sqlite3' : yes
Checking Crypto++ lib : 561
Checking if CryptoPP library works : no
Checking if CryptoPP library works : no
CryptoPP is present, but is not usable
(complete log in /home/juhyun-park/다운로드/ndnSIM/ns-3/src/ndnSIM/ndn-cxx/build/config.log)
请注意最后两句话。
CryptoPP是存在的,但不能使用 (在/home/juhyun-park/다운로드/ndnSIM/ns-3/src/ndnSIM/ndn-cxx/build/config.log)中完整登录
我还附上了日志文件下载链接。
我该怎么做才能解决这个问题?
我的发展环境是:
操作系统: Ubuntu 14.04 LTS(桌面Ver)
类型:64位
内核:4.4.0-36-泛型
发布于 2017-03-05 17:58:31
不需要独立构建ndn-cxx,在通过./waf configure
在ns-3的顶级主管上构建后,ndn-cxx也将生成,安装后,ndn-cxx报头将安装在/usr/local/include/ns3-dev/ns3/ndnSIM/ndn-cxx
上。
https://stackoverflow.com/questions/39269267
复制相似问题