diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-02-18 12:28:23 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-02-18 12:28:23 +0100 |
| commit | 1077e8b3b4d0f00d2b13fd815fe5747ac526e0f7 (patch) | |
| tree | ba598383be5167d0b362169f36fdf87aa12e42ed | |
| parent | b1e8ab492c45f039b93ecdd98e9ff5638ae23132 (diff) | |
| download | allocbench-1077e8b3b4d0f00d2b13fd815fe5747ac526e0f7.tar.gz allocbench-1077e8b3b4d0f00d2b13fd815fe5747ac526e0f7.zip | |
allow consecutive builds of tcmalloc
| -rw-r--r-- | src/allocators/tcmalloc.py | 2 |
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" ] |
