diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-20 17:21:12 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-20 17:21:12 +0200 |
| commit | 29a4dad6dae841b9bc8899990af1fe50ae193050 (patch) | |
| tree | 537ea1d0625d75252ae3c60bf5b12ab6ea461b8b | |
| parent | b7ab05c6d3e960a0b794e8c39cf41d045f9bf6ca (diff) | |
| download | allocbench-29a4dad6dae841b9bc8899990af1fe50ae193050.tar.gz allocbench-29a4dad6dae841b9bc8899990af1fe50ae193050.zip | |
fix tbb
tbb is build for each installed kernel version resulting in multiple
libraries.
| -rw-r--r-- | src/allocators/tbbmalloc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/tbbmalloc.py b/src/allocators/tbbmalloc.py index db24395..a5b28b7 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'] + 'ln -f -s $(find {srcdir} -executable -name "*libtbbmalloc_proxy.so*") {dir}/libtbbmalloc.so | head -1'] super().__init__(name, **kwargs) |
