当我尝试构建C ++程序时出现错误

时间:2020-02-23 18:58:03

标签: c++ build

我刚刚开始学习c ++,但是在构建代码时遇到了问题。这是代码。

#include <iostream>
using namespace std;

int main()
{
    return 0;
}

如果我尝试构建它,则会出现以下错误。

C:\WINDOWS\system32\cmd.exe /C mingw32-make.exe -j 8 -e -f  Makefile
'mingw32-make.exe' is not recognized as an internal or external command,
operable program or batch file.
====0 errors, 0 warnings====

我首先使用代码块,但遇到了相同的错误,因此我尝试切换Codelite以解决此问题,但我仍然遇到相同的错误。关于如何解决此问题的任何建议将不胜感激。

1 个答案:

答案 0 :(得分:2)

看来编译器的路径不正确。

https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/

只需创建“ mingw32-make.exe”的路径即可。

更新路径后,您可能需要关闭并重新打开IDE。

如果其他所有方法均失败,则只需下载Visual Studios社区。