blob: 8d60a9975eef3a259206cf4f79fbc75a505dd1a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash -x
set -ev
# Get tcmalloc release
wget https://github.com/gperftools/gperftools/releases/download/gperftools-2.4/gperftools-2.4.tar.gz
tar xfz gperftools-2.4.tar.gz
cd gperftools-2.4
./configure --disable-dependency-tracking --disable-cpu-profiler --disable-heap-checker --disable-debugalloc --enable-minimal --prefix=/usr
make
sudo make install
|