代码:: blocks的默认“Hello world”代码以状态1终止 . 我无法打开它!有谁知道为什么?

#include <iostream>

using namespace std;

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

这是我编译时显示的内容:

mingw32-g++.exe  -o bin\Debug\Bucky.exe obj\Debug\main.o   
mingw32-g++.exe: Internal error: Aborted (program collect2)
Please submit a full bug report.
See <URL:http://www.mingw.org/bugs.shtml> for instructions.
Process terminated with status 1 (0 minute(s), 0 second(s))
0 error(s), 0 warning(s) (0 minute(s), 0 second(s))

谢谢!

  • Jesper