Webから入手した比較的単純なアプリケーションをコンパイルしようとしています。
makeを実行すると、次のエラーが発生します。
In file included from main.cpp:2:0:
os.h: In function ‘void myOpenDir(const char*)’:
os.h:13:16: error: ‘chdir’ was not declared in this scope
ファイルos.hは次のようになります。
#ifndef OS_H
#define OS_H
#if defined(__GNUG__)
#define INT64 long long
#define UINT64 unsigned long long
#include <dirent.h>
#define SPRTR '/'
void myOpenDir(const char* dirpath)
{
chdir(dirpath);
}
#elif defined(_MSC_VER)
#define INT64 __int64
#define UINT64 unsigned __int64
#include <direct.h>
#define SPRTR '\\'
void myOpenDir(const char* dirpath)
{
_chdir(dirpath);
}
#else
#error "Platform not supported. Need to update source code"
#endif
#endif
なぜコンパイルされないのか、誰かが知ったのですか?
また、g++-4.7.real -cmain.cppを介してg++コンパイラを使用しましたが、これまでのところうまくいきません。