aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-07-17 18:41:23 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-07-17 18:41:23 +0200
commit40f8919ad043472c7e2b717f6d46dcfcbf978991 (patch)
tree3953b77f54d611bc3dda78d96a2ae6f330a09427
parentb22c5833e920063e23756da200f13ab9dd3b6868 (diff)
downloadallocbench-40f8919ad043472c7e2b717f6d46dcfcbf978991.tar.gz
allocbench-40f8919ad043472c7e2b717f6d46dcfcbf978991.zip
use libtbbmalloc_proxy which overwrites malloc
-rw-r--r--src/allocators/tbbmalloc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/tbbmalloc.py b/src/allocators/tbbmalloc.py
index 77c3cf0..317c527 100644
--- a/src/allocators/tbbmalloc.py
+++ b/src/allocators/tbbmalloc.py
@@ -16,7 +16,7 @@ class TBBMalloc (src.allocator.Allocator):
kwargs["LD_PRELOAD"] = "{dir}/libtbbmalloc.so"
kwargs["build_cmds"] = ["cd {srcdir}; make tbbmalloc -j4",
"mkdir -p {dir}",
- 'ln -f -s $(find {srcdir} -executable -name "*libtbbmalloc.so*") {dir}/libtbbmalloc.so']
+ 'ln -f -s $(find {srcdir} -executable -name "*libtbbmalloc_proxy.so*") {dir}/libtbbmalloc.so']
super().__init__(name, **kwargs)