aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-20 23:15:01 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-20 23:15:01 +0200
commit44fed83d29f1b5dee484b53c881010da895110ff (patch)
treed76439e891c3e09be07bf483809a094936321ca8
parent64e9b6dca11884ffff502857ee6be4d1d76e2953 (diff)
downloadallocbench-44fed83d29f1b5dee484b53c881010da895110ff.tar.gz
allocbench-44fed83d29f1b5dee484b53c881010da895110ff.zip
fix broken build command for tbbmalloc
-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 a5b28b7..d96f40b 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_proxy.so*") {dir}/libtbbmalloc.so | head -1']
+ 'ln -f -s $(find {srcdir} -executable -name "*libtbbmalloc_proxy.so*" | head -1) {dir}/libtbbmalloc.so']
super().__init__(name, **kwargs)