c++ - MinGW编译提示找不到iostream
怪我咯
怪我咯 2017-04-17 13:31:17
0
1
929

codeblocks + MinGW进行简单的C++程序开发。为了测试搭建平台是否完成,只写个HelloWorld来编译测试一下。

#include <iostream>

using namespace std;

int main()
{
    cout << "Hello world!" << endl;
    return 0;
}

结果连编译都过不了:

-------------- Build: Debug in btest (compiler: GNU GCC Compiler)---------------

mingw32-g++.exe -Wall -fexceptions -g  -c D:\btest\main.cpp -o obj\Debug\main.o
D:\btest\main.cpp:1:20: fatal error: iostream: No such file or directory
 #include <iostream>
                    ^
compilation terminated.

path中已加入MinGW路径:

%MinGW%\bin;%MinGW%\mingw32\bin;

另外codeblock中编译环境设置如图:

请问环境搭建存在什么问题?应如何排查?

怪我咯
怪我咯

走同样的路,发现不同的人生

全部回覆(1)
小葫芦

試試eclipse-cdt

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!