-
Notifications
You must be signed in to change notification settings - Fork 53
Description
单独编译jemalloc位置:
[root@localhost jemalloc]# pwd
/root/bdrp/redis/redis-2.6.16/deps/jemalloc
[root@localhost jemalloc]#
./configure
.....
checking for _Bool... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/html.xsl
config.status: creating doc/manpages.xsl
config.status: creating doc/jemalloc.xml
config.status: creating include/jemalloc/jemalloc.h
config.status: creating include/jemalloc/internal/jemalloc_internal.h
config.status: error: cannot find input file: test/jemalloc_test.h.in
直接编译:
[root@localhost redis-2.6.16]# make
cd src && make all
make[1]: Entering directory /root/bdrp/redis/redis-2.6.16/src' CC adlist.o In file included from zmalloc.h:50, from adlist.c:34: ../deps/jemalloc/include/jemalloc/jemalloc.h:17:27: error: jemalloc_defs.h: No such file or directory In file included from zmalloc.h:50, from adlist.c:34: ../deps/jemalloc/include/jemalloc/jemalloc.h:41: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘const’ ../deps/jemalloc/include/jemalloc/jemalloc.h:42: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’ ../deps/jemalloc/include/jemalloc/jemalloc.h:45: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’ ../deps/jemalloc/include/jemalloc/jemalloc.h:46: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’ ../deps/jemalloc/include/jemalloc/jemalloc.h:48: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘int’ ../deps/jemalloc/include/jemalloc/jemalloc.h:50: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’ ../deps/jemalloc/include/jemalloc/jemalloc.h:52: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’ ../deps/jemalloc/include/jemalloc/jemalloc.h:53: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’ ../deps/jemalloc/include/jemalloc/jemalloc.h:64: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘size_t’ ../deps/jemalloc/include/jemalloc/jemalloc.h:66: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’ ../deps/jemalloc/include/jemalloc/jemalloc.h:68: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘int’ ../deps/jemalloc/include/jemalloc/jemalloc.h:70: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘int’ ../deps/jemalloc/include/jemalloc/jemalloc.h:72: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘int’ make[1]: *** [adlist.o] Error 1 make[1]: Leaving directory/root/bdrp/redis/redis-2.6.16/src'
make: *** [all] Error 2
[root@localhost redis-2.6.16]#
请问应该如何解决该问题呢?