/bin/sh: cc: command not found

时间:2024-03-21 20:32:43

编译cpp项目时遇到/bin/sh: cc: command not found

原因: gcc和g++工具没有找到。

目前系统:已经安装了minGW64: 安装过程可以参考
/bin/sh: cc: command not found

因此只需要将路径加到系统环境变量中去就行了
/bin/sh: cc: command not found
/bin/sh: cc: command not found

如果要编译cpp,MinGW一定要是用的是MinGW64而不是MinGW,MinGW与MinGW64有着很大的区别,MinGW64是Cygwin的分支,其支持pthread的Linux多线程库,而对于MinGW则不支持,因此使用MinGW是无法编译通过的,出现mutex等结构体未定义等错误。