4

omn​​etpp 4.1をインストールしようとしています(新しいバージョンをインストールできません)。とにかく、実行する./configureとエラーや警告は報告されませんが、実行するmakeと次のようになります。

make MODE=release
make[1]: Entering directory `/home/yotam/omnetpp-4.1'
***** Configuration: MODE=release, TOOLCHAIN_NAME=gcc, LIB_SUFFIX=.so ****
===== Checking environment =====
mkdir -p /home/yotam/omnetpp-4.1/bin
===== Compiling utils ====
cd /home/yotam/omnetpp-4.1/src/utils && make
make[2]: Entering directory `/home/yotam/omnetpp-4.1/src/utils'
g++ abspath.cc -o /home/yotam/omnetpp-4.1/out/gcc-release/src/utils/abspath
abspath.cc: In function ‘std::string toAbsolutePath(const char*)’:
abspath.cc:62:38: error: ‘getcwd’ was not declared in this scope
make[2]: *** [/home/yotam/omnetpp-4.1/out/gcc-release/src/utils/abspath] Error 1
make[2]: Leaving directory `/home/yotam/omnetpp-4.1/src/utils'
make[1]: *** [utils] Error 2
make[1]: Leaving directory `/home/yotam/omnetpp-4.1'
make: *** [allmodes] Error 2

重要な場合は、ununtu12.10を実行しています。コードエラーのようですよね?

助言がありますか?ありがとう

4

1 に答える 1

14

ファイルを編集しsrc/utils/abspath.cc、以下を手動で追加します。

#include <unistd.h>

保存して再度コンパイルします。問題が解決しました。

于 2012-12-30T07:06:50.787 に答える