Under Ubuntu Server 14, install the Redis issue:
Issue one: CC Adlist.o/bin/sh:1:cc:not found
Cause of the problem: this is because the system does not have a GCC environment installed, so the above prompt will appear at compile time, and the above error will disappear when GCC is installed and then compiled.
Specific solutions:
1) First install gcc: switch to root user, run sudo apt-get install gcc
2) Reset && make install
Question two: Redis jemallo/jemallo.h:no such file or directory
In the case of a problem, perform the make compile command, there is a problem: Redis jemallo/jemallo.h:no such file or directory
Cause Analysis: There is a paragraph in the readme.
Allocator
---------
Selecting a Non-default memory allocator when building Redis are 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 is picked because Jemalloc has proven to having fewer
Fragmentation problems than libc malloc.
To force compiling against libc malloc, use:
% make MALLOC=LIBC
To compile against Jemalloc in Mac OS X systems, use:
% make Malloc=jemalloc
Said about the allocator allocator, if there is malloc this environment variable, it will be useful for this environment variable to establish redis.
And libc is not the default allocator, the default is Jemalloc, because Jemalloc is proven to have fewer fragmentation problems than libc.
But if you don't have a jemalloc and only libc of course make a mistake. So add such a parameter.
Workaround: Make MALLOC=LIBC
Finally, run the make test