【庖丁解牛】configure: error: Please reinstall the libzip distribution
【摘要】 问题复现
重新编译php报错
configure: error: Please reinstall the libzip distribution
使用yum安装无效
[root@xinsz08 php-7.3.6]# yum install libzip
Loaded plugins: fastestmirror
Loading mirror speeds f...
问题复现
重新编译php报错
configure: error: Please reinstall the libzip distribution
使用yum安装无效
[root@xinsz08 php-7.3.6]# yum install libzip
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Package libzip-0.10.1-8.el7.x86_64 already installed and latest version
Nothing to do
- 1
- 2
- 3
- 4
- 5
- 6
问题解决
下载新版本
[root@xinsz08 php-7.3.6]# curl -O https://libzip.org/download/libzip-1.5.2.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed
- 1
- 2
- 3
[root@xinsz08 ~]# tar xf libzip-1.5.2.tar.gz
[root@xinsz08 ~]# cd libzip-1.5.2
[root@xinsz08 bulid]# yum install cmake
[root@xinsz08 bulid]# mkdir bulid
[root@xinsz08 bulid]# cd bulid/
[root@xinsz08 bulid]# yum remove libzip
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
cmake版本也会出现过低的情况:
下载cmake
root@xinsz08 bulid]# wget https://cmake.org/files/v3.18/cmake-3.18.0-Linux-x86_64.sh
[root@xinsz08 ~]# chmod 777 cmake-3.18.0-Linux-x86_64.sh ## 加权限
- 1
- 2
卸载掉原来的cmake
[root@xinsz08 ~]# yum remove cmake
- 1
执行脚本安装新的
[root@xinsz08 ~]# ./cmake-3.18.0-Linux-x86_64.sh
进入build目录
[root@xinsz08 libzip-1.5.2]# cd bulid/
[root@xinsz08 bulid]# ls
cmake-3.18.0-Linux-x86_64.sh CMakeCache.txt CMakeFiles
- 1
- 2
- 3
执行cmake
做软连接
[root@xinsz08 bulid]# ln -s /home/zmedu/cmake-3.18.0-Linux-x86_64/bin/cmake /usr/bin/cmake
- 1
编译
[root@xinsz08 bulid]# cmake ..
[root@xinsz08 bulid]# make
[root@xinsz08 bulid]# make install
- 1
- 2
- 3
安装成功后,继续编译php7
文章来源: zmedu.blog.csdn.net,作者:互联网老辛,版权归原作者所有,如需转载,请联系作者。
原文链接:zmedu.blog.csdn.net/article/details/107550083
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)