-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig
41 lines (31 loc) · 1.26 KB
/
build.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const std = @import("std");
const solutions = .{ "merge", "hashmap" };
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
var artifacts = std.ArrayListUnmanaged(*std.Build.Step.Compile){};
inline for (solutions) |solution| {
const exe = b.addExecutable(.{
.name = solution,
.root_source_file = b.path("src/" ++ solution ++ ".zig"),
.target = target,
.optimize = optimize,
});
exe.linkLibC();
artifacts.append(b.allocator, exe) catch @panic("OOM");
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step(solution, "Run " ++ solution);
run_step.dependOn(&run_cmd.step);
}
const bench_system_command_step = b.addSystemCommand(&.{ "hyperfine", "--warmup", "3", "--runs", "250" });
for (artifacts.items) |artifact| {
bench_system_command_step.addArtifactArg(artifact);
}
const bench_step = b.step("bench", "Hyperfine benchmarks");
bench_step.dependOn(&bench_system_command_step.step);
}