编译安装时显示无法访问boringssl的下载链接的解决方法
问题现象描述
编译安装时显示无法访问boringssl的下载链接,提示“unable to access 'https://boringssl.googlesource.com/boring/'”。
关键过程、根本原因分析
boringssl-static模块编译时会拉取boringssl项目的源码,源码中默认的下载地址为https://boringssl.googlesource.com/boringssl。如果编译环境不能访问默认的boringssl资源,则需要修改下载地址。
结论、解决方案及效果
- 在源码的“boringssl-static”路径下,打开pom.xml文件。
vim /home/netty-tcnative-netty-tcnative-parent-2.0.28.Final/boringssl-static/pom.xml
- 按“i”进入编辑模式,修改第82行的下载地址。
https://github.com/google/boringssl
- 按“Esc”键,输入:wq!,按“Enter”保存并退出编辑。
- 重新执行编译命令。
mvn clean install
父主题: 故障排除