所以我通常在linux下编码,但最近我已经切换回windows了。下载代码:: blocks和mingw(到默认目录,代码:: blocks找到它)后我决定在hello world程序上测试它
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
但是我甚至无法构建它,编译器返回以下错误:
mingw32-g++.exe -Wall -fexceptions -g -std=c++11 -c C:\Users\GHOST\Documents\ghostProj\Test\main.cpp -o obj\Debug\main.o
mingw-get.exe -o bin\Debug\Test.exe obj\Debug\main.o
mingw-get.exe: unrecognised option `-o'
Process terminated with status 1 (0 minute(s), 0 second(s))
0 error(s), 0 warning(s) (0 minute(s), 0 second(s))
非常感谢帮助人员。