swoole编译失败怎么办
swoole  /  管理员 发布于 5年前   705
swoole编译失败怎么办?
swoole编译安装过程遇到的问题
出现“perl: warning: Falling back to the standard locale (“C”).”等提示错误,如下:
perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = "en_US.UTF-8", LC_ALL = "", LANG = "AMERICAN_AMERICA.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C").
解决办法:
在~/.bashrc文件中加入如下内容
export LANGUAGE="en_US.UTF-8"export:zh_CN.UTF-8export LC_ALL=C
然后执行如下命令使其生效:
source /root/.bashrc
configure: error: C++ preprocessor “/lib/cpp” fails sanity checkconfigure: error: in `/wwwroot/swoole-4.2.5':configure: error: C++ preprocessor "/lib/cpp" fails sanity check
问题的根源是缺少必要的C++库。运行如下命令解决:
yum install glibc-headersyum install gcc-c++
“Enable http2 support, require nghttp2 library” 错误/wwwroot/swoole-4.2.5/php_swoole.h:142:2: error: #error "Enable http2 support, require nghttp2 library." #error "Enable http2 support, require nghttp2 library."
需要安装nghttp2,首先安装依赖库
sudo yum -y groupinstall "Development Tools"sudo yum -y install openssl-devel libxml2-devel libev-devel jemalloc-devel python-develwget https://c-ares.haxx.se/download/c-ares-1.12.0.tar.gz -O /tmp/c-ares.tar.gzmkdir -p /tmp/c-arestar -zxvf /tmp/c-ares.tar.gz -C /tmp/c-ares --strip-components=1cd /tmp/c-ares && ./configure --libdir=/usr/lib64makesudo make installwget http://www.digip.org/jansson/releases/jansson-2.9.tar.gz -O /tmp/jansson.tar.gzmkdir -p /tmp/janssontar -zxvf /tmp/jansson.tar.gz -C /tmp/jansson --strip-components=1cd /tmp/jansson && ./configure --libdir=/usr/lib64makemake checksudo make inst
安装nghttp2服务:
wget https://github.com/nghttp2/nghttp2/releases/download/v1.19.0/nghttp2-1.19.0.tar.gz -O /tmp/nghttp2.tar.gzmkdir -p /tmp/nghttp2tar -zxvf /tmp/nghttp2.tar.gz -C /tmp/nghttp2 --strip-components=1cd /tmp/nghttp2 && ./configure --enable-appmakesudo make install
hiredis 不存在
/wwwroot/swoole-4.2.5/swoole_redis.c:20:29: fatal error: hiredis/hiredis.h: No such file or directory #include <hiredis/hiredis.h>
需要安装redis和hiredis服务。
安装redis:
yum -y install tclwget http://download.redis.io/releases/redis-3.0.7.tar.gztar xzf redis-3.0.7.tar.gz cd redis-3.0.7makemake testmake install
安装hiredis:
wget https://github.com/redis/hiredis/archive/v0.14.0.tar.gztar xzf v0.14.0.tar.gzcd hiredis-0.14.0/makemake install
以上就是swoole编译失败怎么办的详细内容,更多请关注其它相关文章!
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号