centos 6.10 安装 tcmalloc
安装 libunwind-1.6.2
解压文件
cd libunwind-1.6.2
./configure
make && make install
另一种方式
从 github 上下载的项目, 在执行autoreconf -i
时一直报错,libtool 未定义,
要先在当前目录执行 libtoolize
,再执行 autoreconf -i
就可以执行成功了。
然后执行:
./configure
make
make install
安装 gperftools
从 github 下载项目
下载地址
解压后进入目录。
执行下面命令:
libtoolize
./autogen.sh
./configure
make && make install
标签:configure,centos,make,6.10,install,tcmalloc
From: https://www.cnblogs.com/AngleLin/p/17787814.html