本文介绍了Eclipse CDT插件问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在我的Windows 7计算机上运行一个c程序使用eclipse和im运行到一个小小的障碍。我目前在我的电脑上下载了CDT插件,我也下载了Mingw并将其设置到我的路径。当我建立简单的Hello world程序时,它会创建一个带有makefile的调试文件以及其中的所有内容,但是对齐状态

  ****构建配置调试项目C_Test **** 

使所有



另外,当我尝试在构建它之后运行我的程序,它说
未找到二进制



任何帮助人员

解决方案

另一个解决方案是在eclipse.ini中设置MINGW_HOME变量:

  -DMINGW_HOME = C:\程序文件(x86)\CodeBlocks\MinGW 

这样可以避免更改系统PATH管理员权限)



(由)


im trying to run a c program on my windows 7 computer using eclipse and im running into a little snag. I currently have Eclipse downloaded on my computer with the CDT plugin and i have also downloaded Mingw and set it to my path. When i build my simple "Hello world" program it does create a debug file with the makefile and everything in it but the concle dialog states

**** Build of configuration Debug for project C_Test ****

make all

Also, when i try to run my program after building it, it says"Binary not found"

any help people?

解决方案

Another solution is to set the MINGW_HOME variable in eclipse.ini :

-DMINGW_HOME=C:\Program Files (x86)\CodeBlocks\MinGW

This avoid to change the system PATH (often requires administrator rights)

(solution suggested by help of eclipse / CDT)

这篇关于Eclipse CDT插件问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 00:03
查看更多