aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-06-17 16:14:42 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-06-17 16:14:42 +0200
commit2757b2790cdc3127b742a127c77fa438710e7f70 (patch)
treec85b4ae9b8521dffcca7cee93b6de3900fdd5940
parent47f1f8d673ff3b1f657a4f85835e6a1cc4725399 (diff)
downloadallocbench-2757b2790cdc3127b742a127c77fa438710e7f70.tar.gz
allocbench-2757b2790cdc3127b742a127c77fa438710e7f70.zip
fix name of tcmalloc source
-rw-r--r--src/allocators/tcmalloc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/tcmalloc.py b/src/allocators/tcmalloc.py
index 1eb0db4..4650772 100644
--- a/src/allocators/tcmalloc.py
+++ b/src/allocators/tcmalloc.py
@@ -3,7 +3,7 @@ import src.allocator
version = 2.7
-tcmalloc_src = src.allocator.Allocator_Sources("tcmalloc",
+tcmalloc_src = src.allocator.Allocator_Sources("gperftools",
["git clone https://github.com/gperftools/gperftools.git"],
["git checkout gperftools-{}".format(version), "./autogen.sh"],
["git stash"])