Dev-C ++ - [Build Error] [main.o]错误2816

时间:2016-12-13 13:33:49

标签: c++ windows windows-10 dev-c++ windows-98

我开始了一个新项目,我正在尝试使用Microsoft Windows 10上的默认值进行编译。我需要针对特定​​项目编译Windows 98。编译器显示以下错误消息[Build Error] [main.o] Error 2816

这是main.cpp

的内容
#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    system("PAUSE");
    return EXIT_SUCCESS;
}

我不知道这个错误意味着什么,我没有找到任何使用谷歌的东西。有什么想法吗?

编辑 - 编译日志

Compiler: Default compiler
Building Makefile: "C:\Projects\prog\Makefile.win"
Executing  make...
make.exe -f "C:\Projects\prog\Makefile.win" all
gcc.exe -c main.c -o main.o -I"C:/Dev-Cpp/include"   

gcc.exe main.o  -o "prog.exe" -L"C:/Dev-Cpp/lib"  

gcc.exe: Internal error: Aborted (program collect2)
Please submit a full bug report.
See <URL:http://www.mingw.org/bugs.shtml> for instructions.

make.exe: *** [prog.exe] Error 1

Execution terminated

1 个答案:

答案 0 :(得分:0)

也许这个答案为时已晚,但对其他人会有所帮助。

文件“ make.exe”在Dev C ++中无法正常工作。 尝试下载带有旧文件集的Dev C ++的旧版本,供MinGW的编译软件使用。