本文主要是介绍jemalloc 库的编译(Linux 下面),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、从 github 上面下载源代码
2、解压到编译的目录里面去
3、安装 autoconf 工具链
4、执行 autogen.sh,成功(done)后就直接 make -j编译线程数
如果没有执行下面的配置语句编译出来的 jemalloc 库,是不能被其它程序链接C符号:je_malloc 函数的,因为它是通过连接器替换C标准库的 malloc、free 函数,但是一个程序之中可能会用到不同的分配器,最好的办法是这么配置编译环境。
./configure --with-jemalloc-prefix=je_
make -j
然后这样子也行
autogen.sh --with-jemalloc-prefix=je_
make -j
如果是 --with-jemalloc-prefix=je_ 编译的就需要增一个编译器定义宏
JEMALLOC_NO_DEMANGLE
该宏定义的说明:
/** The je_* macros can be used as stable alternative names for the* public jemalloc API if JEMALLOC_NO_DEMANGLE is defined. This is primarily* meant for use in jemalloc itself, but it can be used by application code to* provide isolation from the name mangling specified via --with-mangling* and/or --with-jemalloc-prefix.*/
这篇关于jemalloc 库的编译(Linux 下面)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!