configurer: get InstallDir and Options steps compiling

This commit is contained in:
Andrew Kelley
2026-05-01 18:26:19 -07:00
parent c57bf99043
commit fa26566867
10 changed files with 215 additions and 327 deletions
+10 -7
View File
@@ -1,17 +1,18 @@
const InstallFile = @This();
const std = @import("std");
const Step = std.Build.Step;
const LazyPath = std.Build.LazyPath;
const InstallDir = std.Build.InstallDir;
const InstallFile = @This();
const assert = std.debug.assert;
pub const base_tag: Step.Tag = .install_file;
step: Step,
source: LazyPath,
dir: InstallDir,
dest_rel_path: []const u8,
pub const base_tag: Step.Tag = .install_file;
pub fn create(
owner: *std.Build,
source: LazyPath,
@@ -19,16 +20,18 @@ pub fn create(
dest_rel_path: []const u8,
) *InstallFile {
assert(dest_rel_path.len != 0);
const install_file = owner.allocator.create(InstallFile) catch @panic("OOM");
const graph = owner.graph;
const arena = graph.arena;
const install_file = arena.create(InstallFile) catch @panic("OOM");
install_file.* = .{
.step = Step.init(.{
.tag = base_tag,
.name = owner.fmt("install {s} to {s}", .{ source.getDisplayName(), dest_rel_path }),
.owner = owner,
}),
.source = source.dupe(owner),
.dir = dir.dupe(owner),
.dest_rel_path = owner.dupePath(dest_rel_path),
.source = source.dupe(graph),
.dir = dir.dupe(graph),
.dest_rel_path = graph.dupePath(dest_rel_path),
};
source.addStepDependencies(&install_file.step);
return install_file;