ubuntu16.04编译git经验总结
2021-12-30 11:48 tangxiaosheng 阅读(114) 评论(0) 编辑 收藏 举报在ubuntu16.04下工作,通过apt安装的git版本是2.7.4,我git push的时候,要求2.26以上的版本。于是从github下载源码,参考INSTLL的说明来安装
sudo apt -y install asciidoc docbook2x
在Makefile中头部增加:
CURLDIR=/opt/anaconda3
ZLIB_PATH=/opt/anaconda3
因为已经安装了ananconda,并且实在anaconda环境下工作,所以需要使用anaconda下的curl和zlib。(其实anaconda下的curl版本还是不够新,7.68版本,我自己下的是7.79版本,访问一些网站不容易失败)
采用的make方式是:
make prefix=/usr/local all doc info -j5