我有一个 Qt C++ 应用程序,可以用 MSVC 编译器很好地编译。现在我正在尝试使用 MinGW 编译相同的应用程序,以便最终将其移植到 Mac OSX。但是,这样做时,我在所有标准上都遇到了错误,包括:
#include <algorithm>
#include <ctime>
#include <map>
#include <sstream>
#include <vector>
编译器输出:
..\trunk\stable.h:29:21: error: algorithm: No such file or directory
..\trunk\stable.h:30:17: error: ctime: No such file or directory
..\trunk\stable.h:31:15: error: map: No such file or directory
..\trunk\stable.h:32:19: error: sstream: No such file or directory
..\trunk\stable.h:33:18: error: vector: No such file or directory
我真的不明白是什么导致了这个问题。有什么建议吗?