Eclipse / C ++配置问题

时间:2012-06-07 14:52:48

标签: eclipse

我正在尝试使用CDT和MinGW在Win7 / 64 Professional上配置Eclipse / Helios。当我尝试编译时:

#include <iostream>
using namespace std ;

int main() {
  cout << "What a lovely day\n" ;
  return(0) ;
}

我得到输出/错误:

make all 
Building file: ../SeeProgram.cpp
Invoking: Cross G++ Compiler
C:\Tools\MinGW\bin\g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"SeeProgram.d" -MT"SeeProgram.d" -o"SeeProgram.o" "../SeeProgram.cpp"
/bin/sh: C:ToolsMinGWbing++: command not found
make: *** [SeeProgram.o] Error 127 .

在倒数第二行中,它应该读取C:\ Tools \ MinGW \ bin \ g ++,但它省略了反斜杠。我还没有看到任何其他的讨论,并尝试了很多方法,但我现在很难过。有什么想法吗?

非常感谢。

1 个答案:

答案 0 :(得分:1)

您是否尝试在输入位置时转义反斜杠,例如:

C:\\Tools\\MingGW\\bin\\g++

这个设置看起来与你的相似,也许它可以提供一个提示:

http://max.berger.name/howto/cdt/ar01s03.jsp#wincompiler