diff options
Diffstat (limited to '.travis/install-tcmalloc.sh')
-rwxr-xr-x | .travis/install-tcmalloc.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/.travis/install-tcmalloc.sh b/.travis/install-tcmalloc.sh deleted file mode 100755 index 0bc26616..00000000 --- a/.travis/install-tcmalloc.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -x -set -ev - -if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - if [ ${USE_TCMALLOC:-0} -eq 1 ] ; then - # 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 - fi -elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then - if [ ${USE_TCMALLOC:-0} -eq 1 ] ; then - echo "Error: Requested to install TCMalloc on macOS, which is not supported" - exit 1 - fi -else - echo "Unhandled TRAVIS_OS_NAME \"${TRAVIS_OS_NAME}\"" - exit 1 -fi |