Linux编译文件报错误configure: error: no acceptable C compiler found in $PATH

Linux编译文件报错误configure: error: no acceptable C compiler found in $PATH


产生错误的原因是因为系统尚未安装c编译器。

安装c编译器。普通用户输入以下命令,会再提示输入该普通用户的密码确认一遍,如果该普通用户无sudo权限,需要root超级管理员配置授权:

$ sudo yum install -y gcc

root超级管理员输入以下命令:

# yum install -y gcc

安装完成,即可正确执行configure编译命令。

你可能感兴趣的:(linux,linux,centos,ubuntu)