Eclipse CDT plugin problems

后端 未结 5 1308
执念已碎
执念已碎 2021-01-18 09:50

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

5条回答
  •  春和景丽
    2021-01-18 10:32

    The error is: there is no make in %PATH. Make is UNIX utility to help building a projects. For windows OS, the make utility is part of msys, not of mingw32.

    According to your path and to my setup of mingw and msys, you have no msys installed (or the path of Msys was not recorded in system %PATH variable).

    For you, msys will be like this path in $PATH variable:

      C:\MINGW\msys\1.0\Bin;
    

    Msys can be downloaded from http://www.mingw.org/ too.

    If you did a download of universal installer (it is the easiest variant), you just should check, is there a make.exe file in the C:\MINGW\msys\1.0\Bin directory and add this directory to the system PATH variable.

提交回复
热议问题