配置错误:找不到C编译器cc。
上周,我正在设置Nginx,编译过程中遇到了一个错误,我能够通过以下方法解决。
我想记录下来,以便其他人也能从中受益。
[root@chandan nginx-1.6.3]# ./configure --prefix=/apps/nginx --add-module=./ngx_cache_purge-2.3 --add-module=./headers-more-nginx-module-0.25/
checking for C compiler ... not found
./configure: error: C compiler cc is not found
解决方案
通常情况下,当您的服务器上没有安装C/GCC编译器时会出现这种情况。您只需要安装gcc
即可解决该问题。
# yum install gcc
如果使用的是CentOS 8,则可以使用DNF command。
# dnf install gcc
安装完成后,可以进行如下验证。
# gcc
gcc: fatal error: no input files
compilation terminated.
#
这对我有帮助,我希望对你也有帮助。了解更多关于Linux administration here的信息。