nereuschen / blog

blog
44 stars 11 forks source link

如何安装和使用google-perfile #28

Open nereuschen opened 9 years ago

nereuschen commented 9 years ago

安装libunwind

安装GCC

sudo yum -y install gcc make
sudo yum -y install gcc gcc-c++

安装libunwind

wget http://download.savannah.gnu.org/releases/libunwind/libunwind-0.99-beta.tar.gz
./configure
make
sudo make install
make clean

安装google-perfile

wget http://gperftools.googlecode.com/files/google-perftools-1.9.1.tar.gz
 ./configure --prefix=/home/q/google-perftools
sudo make
sudo make install
make clean

如何使用

以tomcat为例,启动

xiejuntao commented 6 years ago

怎么启动?