aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/supermalloc.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-06-17 14:59:17 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-06-17 14:59:17 +0200
commit47f1f8d673ff3b1f657a4f85835e6a1cc4725399 (patch)
treebe51f7869ac623b6ecfb85c1e384a1eea5d4908d /src/allocators/supermalloc.py
parent0d192f8cf3c21b2382e227fab057dabe16ea5e8b (diff)
downloadallocbench-47f1f8d673ff3b1f657a4f85835e6a1cc4725399.tar.gz
allocbench-47f1f8d673ff3b1f657a4f85835e6a1cc4725399.zip
fix jemalloc, SuperMalloc and Hoard dirty builds
Diffstat (limited to 'src/allocators/supermalloc.py')
-rw-r--r--src/allocators/supermalloc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/supermalloc.py b/src/allocators/supermalloc.py
index 7b96b80..94aae7d 100644
--- a/src/allocators/supermalloc.py
+++ b/src/allocators/supermalloc.py
@@ -14,7 +14,7 @@ class SuperMalloc (src.allocator.Allocator):
kwargs["sources"] = sources
kwargs["LD_PRELOAD"] = "{srcdir}/release/lib/libsupermalloc.so"
kwargs["build_cmds"] = ["cd {srcdir}/release; make CFLAGS=-O2",
- "mkdir {dir}"]
+ "mkdir -p {dir}"]
super().__init__(name, **kwargs)