diff options
author | Martin Nowack <martin.nowack@gmail.com> | 2016-02-23 14:17:20 +0000 |
---|---|---|
committer | Martin Nowack <martin@se.inf.tu-dresden.de> | 2016-02-27 10:23:08 +0100 |
commit | a6a5c148b63f811a6df1e5a3eb6edd43148df510 (patch) | |
tree | a2c6196ab10792851f082bd7ca085aca9e13f76d /.travis/install-tcmalloc.sh | |
parent | 4d082d995e5404de0058f6db2b008a3f830c627d (diff) | |
download | klee-a6a5c148b63f811a6df1e5a3eb6edd43148df510.tar.gz |
Update travis configuration to use tcmalloc
We have to build our own tcmalloc, as the version provided with Ubtuntu 12.04 is too old.
Diffstat (limited to '.travis/install-tcmalloc.sh')
-rwxr-xr-x | .travis/install-tcmalloc.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis/install-tcmalloc.sh b/.travis/install-tcmalloc.sh new file mode 100755 index 00000000..8d60a997 --- /dev/null +++ b/.travis/install-tcmalloc.sh @@ -0,0 +1,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 |