From 2d86e20f5a44aea66725686531463931f38aa2dc Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 24 Jun 2019 14:51:21 +0200 Subject: rework allocator definitions #2 bench.py no evals only if argument to -a is file path. Otherwise it will check if "arg".py is found in src/allocators/ then it imports it. Collection definitions must export a iterable member called allocators. Allocator definitions must export a member named "arg". --- src/allocators/jemalloc.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/allocators/jemalloc.py') diff --git a/src/allocators/jemalloc.py b/src/allocators/jemalloc.py index f3f43cb..d3f2c3d 100644 --- a/src/allocators/jemalloc.py +++ b/src/allocators/jemalloc.py @@ -1,8 +1,9 @@ import src.allocator + version = "5.1.0" -sources=src.allocator.Allocator_Sources("jemalloc", +sources = src.allocator.Allocator_Sources("jemalloc", retrieve_cmds=["git clone https://github.com/jemalloc/jemalloc.git"], prepare_cmds=["git checkout {}".format(version), "./autogen.sh"]) @@ -18,3 +19,6 @@ class Jemalloc (src.allocator.Allocator): "mkdir -p {dir}"] super().__init__(name, **kwargs) + + +jemalloc = Jemalloc("jemalloc") -- cgit v1.2.3