aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-02-18 12:28:23 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-02-18 12:28:23 +0100
commit1077e8b3b4d0f00d2b13fd815fe5747ac526e0f7 (patch)
treeba598383be5167d0b362169f36fdf87aa12e42ed
parentb1e8ab492c45f039b93ecdd98e9ff5638ae23132 (diff)
downloadallocbench-1077e8b3b4d0f00d2b13fd815fe5747ac526e0f7.tar.gz
allocbench-1077e8b3b4d0f00d2b13fd815fe5747ac526e0f7.zip
allow consecutive builds of tcmalloc
-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 054dba3..24f9b45 100644
--- a/src/allocators/tcmalloc.py
+++ b/src/allocators/tcmalloc.py
@@ -31,7 +31,7 @@ class TCMalloc(Allocator):
self.patches = ["{patchdir}/tcmalloc_bazel_build_so.patch"]
self.build_cmds = [
"cd {srcdir}; bazel build tcmalloc/tcmalloc.so --compilation_mode opt",
- "mkdir {dir}",
+ "mkdir -p {dir}",
"cp {srcdir}/bazel-bin/tcmalloc/tcmalloc.so {dir}/libtcmalloc.so"
]