服务器更新git版本报错 git-compat-util.h:14:2:error “Required C99 support is in a test phase“

服务器系统 Centos 7
在更新git版本时报如下错误

 # 执行的命令
 make prefix=/usr/local/git all
 
 # 报错
 git-compat-util.h:14:2:error "Required C99 support is in a test phase,please see git-compat-util.h" for more detail

错误截图
服务器更新git版本报错 git-compat-util.h:14:2:error “Required C99 support is in a test phase“_第1张图片
在网上看了很多博客说是因为安装的tar包缺少文件导致的,因此就换了一种链接下载文件就成功了

原下载命令

wget -O git.zip https://github.com/git/git/archive/master.zip

新下载命令

wget https://github.com/git/git/archive/v2.17.0.tar.gz 

如果linux虚拟机或服务器无法访问github,可以参考我的另外一篇博客中的方法二或者方法三

linux下更新服务器git版本(多种方式)_Hydrion-Qlz的博客-CSDN博客

你可能感兴趣的:(git,linux,git,服务器,linux)