已解决(configure: error: C compiler cc is not found)

【已解决(configure: error: C compiler cc is not found)】上周, 我正在设置Nginx, 并且在编译时遇到错误, 我可以按以下解决。
我想记录下来, 以便其他人可以从中受益。

[[email  protected] 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

安装完成后, 你可以进行以下验证。
# gcc gcc: fatal error: no input files compilation terminated. #

这对我有所帮助, 也希望你也对我有帮助。在此处了解有关Linux管理的更多信息。

    推荐阅读