diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-21 16:15:27 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-21 16:17:17 +0200 |
| commit | 26acccbe30198d365cea9378eaae9fb41ccb5bb8 (patch) | |
| tree | a2dda66bfa961427078481f53fc19121741c918c /src/allocators/jemalloc.py | |
| parent | 44fed83d29f1b5dee484b53c881010da895110ff (diff) | |
| download | allocbench-26acccbe30198d365cea9378eaae9fb41ccb5bb8.tar.gz allocbench-26acccbe30198d365cea9378eaae9fb41ccb5bb8.zip | |
use default optimisation flags for tcmalloc, jemalloc and Hoard
Diffstat (limited to 'src/allocators/jemalloc.py')
| -rw-r--r-- | src/allocators/jemalloc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/jemalloc.py b/src/allocators/jemalloc.py index dc3baf5..6c37f57 100644 --- a/src/allocators/jemalloc.py +++ b/src/allocators/jemalloc.py @@ -14,7 +14,7 @@ class Jemalloc (src.allocator.Allocator): kwargs["sources"] = sources kwargs["LD_PRELOAD"] = "{srcdir}/lib/libjemalloc.so" - kwargs["build_cmds"] = ["cd {srcdir}; ./configure --prefix={dir} CFLAGS=-O2", + kwargs["build_cmds"] = ["cd {srcdir}; ./configure --prefix={dir}", "cd {srcdir}; make -j4", "mkdir -p {dir}"] |
