From 130765de719a3ddc475284e13749d09ff371a8e1 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Fri, 1 Feb 2019 16:35:20 +0100 Subject: rework build system #1 each benchmark has its own Makefile which must put it's binaries into OBJDIR which is added to the PATH during execution. --- src/dj_trace.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dj_trace.py') diff --git a/src/dj_trace.py b/src/dj_trace.py index 21b9ddd..f4265ea 100644 --- a/src/dj_trace.py +++ b/src/dj_trace.py @@ -34,7 +34,7 @@ class Benchmark_DJ_Trace( Benchmark ): also used by delorie to measure improvements in the glibc allocator.""", - self.cmd = "build/trace_run{binary_suffix} dj_workloads/{workload}.wl" + self.cmd = "trace_run{binary_suffix} dj_workloads/{workload}.wl" self.measure_cmd = "" self.args = { @@ -80,7 +80,7 @@ class Benchmark_DJ_Trace( Benchmark ): "realloc":117, "free":10099261, "threads": 19}, } - self.requirements = ["build/trace_run"] + self.requirements = ["trace_run"] super().__init__() def prepare(self, verbose=False): -- cgit v1.2.3