CentOS 6.5 安装 Redis 执行 make #error "Newer version of jemalloc required"

喜夏-厌秋 提交于 2019-12-12 12:25:31

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>

CentOS 6.5 安装 Redis 执行 make #error "Newer version of jemalloc required"

根据你系统安装时或之后安装的选项的情况,可能在安装的过程中遇到不同的问题;

就像今天遇到的一台机器,安装时出现

/bin/sh: cc: command not found  

的错误,解决之后又出现这里说的问题;

[root[@localhost](https://my.oschina.net/u/570656) redis-3.2.0]# make  
cd src && make all  
make[1]: Entering directory `/opt/redis-3.2.0/src'  
    CC adlist.o  
在包含自 adlist.c:34 的文件中:  
zmalloc.h:50:31: 错误:jemalloc/jemalloc.h:没有那个文件或目录  
zmalloc.h:55:2: 错误:#error "Newer version of jemalloc required"  
make[1]: *** [adlist.o] 错误 1  
make[1]: Leaving directory `/opt/redis-3.2.0/src'  
make: *** [all] 错误 2  

解决方法:

make MALLOC=libc
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!