centos7编译安装redis遇坑

编译redis时:make cc Command not found

原因分析:没有安装gcc,执行:
yum install gcc

 

编译redis时:error: jemalloc/jemalloc.h: No such file or directory

原因分析:gcc在这里是作为c语言编译器编译redis的(当然现在已经发展成为多种语言的编译器),说到c语言一般都会想到那些.h的头文件,这些头文件里面包含了MALLOC这个环境变量并且MALLOC=jemalloc,然后我们再来看看redis的说明文件README.md,可以发现以下这段话:

Selecting a non-default memory allocator when building Redis is done by setting
the `MALLOC` environment variable. Redis is compiled and linked against libc
malloc by default, with the exception of jemalloc being the default on Linux
systems. This default was picked because jemalloc has proven to have fewer
fragmentation problems than libc malloc.

To force compiling against libc malloc, use:

% make MALLOC=libc

To compile against jemalloc on Mac OS X systems, use:

% make MALLOC=jemalloc

现在错误的原因和解决办法已经显现出来了,执行

make MALLOC=libc

 

问题解决

 

转载请注明博客出处:http://www.cnblogs.com/cjh-notes/

 

 

转载于:https://www.cnblogs.com/cjh-notes/p/8735044.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值