编译Redis时报错: jemalloc/jemalloc.h: No such file or directory

1.编译Redis时出现错误

 运行:

[root@centos01 redis-6.2.7]# make & make install

 报错:

zmalloc.h:50:31: fatal error: jemalloc/jemalloc.h: No such file or directory
#include

2.解决步骤

 2.1 检查gcc是否安装

[root@centos01 ~]# gcc --version
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)

通过检查gcc版本可以知道我们已经安装了gcc,但是编译Redis依然报错

 2.2 解决办法

  输入命令:

make MALLOC=libc
make install

 2.3 原因

jemalloc重载了Linux下的ANSI C的malloc和free函数

你可能感兴趣的:(redis,数据库,缓存)