2

今天我遇到了 Dev-C++ 最通用的编译错误

Compiler: Default compiler
Building Makefile: "C:\projects\Makefile.win"
Executing  make...

make.exe -f "C:\projects\Makefile.win" all
g++.exe -c test.cpp -o test.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include"  -I"C:/Dev-Cpp/include/c++/3.4.2/backward"  -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32"  -I"C:/Dev-Cpp/include/c++/3.4.2"  -I"C:/Dev-Cpp/include"  -I"C:/SDL-1.2.15/include"   

make.exe: *** [test.o] Error 255

Execution terminated

就是这样。我在网上搜索了一下,但通常你可以在编译日志中看到一些其他类型的错误,但在我的情况下没有。任何人都可以帮助。我在窗口 8 上运行它

4

1 回答 1

3

请将您的 IDE 更新到以下版本,该版本修复了大量错误,随 GCC 4.6.1 或 4.7.0 一起提供,并且完全可移植:http: //sourceforge.net/projects/orwelldevcpp/

这将是尝试解决有关自动生成的 makefile 的问题的第一个修复程序。更新版本可能会修复您的 makefile 问题。

您也可以自己打开自动生成的 makefile,然后:

  • 转到项目>>项目选项>> Makefile并勾选“使用自定义makefile”。
  • 尝试手动修复makefile。
  • ???
  • 重建。
  • 利润。

如果此选项之前未选中,您可以确定旧的 Dev-C++ 在创建 makefile 时出错,或者捆绑的编译器由于某种原因而损坏。

于 2012-12-07T17:50:37.773 回答