aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Build/ObjCopyStep.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-03-16 17:33:24 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-03-16 17:33:24 -0700
commit1ed569e0b23c4432cd00604dcae89a17edc852a9 (patch)
tree090e0b3817a0caa4f3e7b99ec1d4d965f2bc7438 /lib/std/Build/ObjCopyStep.zig
parent778ca2ae6bf025edb6babeec08c957be1fbb37a5 (diff)
parentb4d58e93ea4d0bbfe674f80d301279d302fe8fc8 (diff)
downloadzig-1ed569e0b23c4432cd00604dcae89a17edc852a9.tar.gz
zig-1ed569e0b23c4432cd00604dcae89a17edc852a9.zip
Merge remote-tracking branch 'origin/master' into llvm16
Diffstat (limited to 'lib/std/Build/ObjCopyStep.zig')
-rw-r--r--lib/std/Build/ObjCopyStep.zig46
1 files changed, 15 insertions, 31 deletions
diff --git a/lib/std/Build/ObjCopyStep.zig b/lib/std/Build/ObjCopyStep.zig
index aea5b8975c..608c56591f 100644
--- a/lib/std/Build/ObjCopyStep.zig
+++ b/lib/std/Build/ObjCopyStep.zig
@@ -21,7 +21,6 @@ pub const RawFormat = enum {
};
step: Step,
-builder: *std.Build,
file_source: std.Build.FileSource,
basename: []const u8,
output_file: std.Build.GeneratedFile,
@@ -38,19 +37,18 @@ pub const Options = struct {
};
pub fn create(
- builder: *std.Build,
+ owner: *std.Build,
file_source: std.Build.FileSource,
options: Options,
) *ObjCopyStep {
- const self = builder.allocator.create(ObjCopyStep) catch @panic("OOM");
+ const self = owner.allocator.create(ObjCopyStep) catch @panic("OOM");
self.* = ObjCopyStep{
- .step = Step.init(
- base_id,
- builder.fmt("objcopy {s}", .{file_source.getDisplayName()}),
- builder.allocator,
- make,
- ),
- .builder = builder,
+ .step = Step.init(.{
+ .id = base_id,
+ .name = owner.fmt("objcopy {s}", .{file_source.getDisplayName()}),
+ .owner = owner,
+ .makeFn = make,
+ }),
.file_source = file_source,
.basename = options.basename orelse file_source.getDisplayName(),
.output_file = std.Build.GeneratedFile{ .step = &self.step },
@@ -67,9 +65,9 @@ pub fn getOutputSource(self: *const ObjCopyStep) std.Build.FileSource {
return .{ .generated = &self.output_file };
}
-fn make(step: *Step) !void {
+fn make(step: *Step, prog_node: *std.Progress.Node) !void {
+ const b = step.owner;
const self = @fieldParentPtr(ObjCopyStep, "step", step);
- const b = self.builder;
var man = b.cache.obtain();
defer man.deinit();
@@ -84,7 +82,7 @@ fn make(step: *Step) !void {
man.hash.addOptional(self.pad_to);
man.hash.addOptional(self.format);
- if (man.hit() catch |err| failWithCacheError(man, err)) {
+ if (try step.cacheHit(&man)) {
// Cache hit, skip subprocess execution.
const digest = man.final();
self.output_file.path = try b.cache_root.join(b.allocator, &.{
@@ -97,8 +95,7 @@ fn make(step: *Step) !void {
const full_dest_path = try b.cache_root.join(b.allocator, &.{ "o", &digest, self.basename });
const cache_path = "o" ++ fs.path.sep_str ++ digest;
b.cache_root.handle.makePath(cache_path) catch |err| {
- std.debug.print("unable to make path {s}: {s}\n", .{ cache_path, @errorName(err) });
- return err;
+ return step.fail("unable to make path {s}: {s}", .{ cache_path, @errorName(err) });
};
var argv = std.ArrayList([]const u8).init(b.allocator);
@@ -116,23 +113,10 @@ fn make(step: *Step) !void {
};
try argv.appendSlice(&.{ full_src_path, full_dest_path });
- _ = try self.builder.execFromStep(argv.items, &self.step);
+
+ try argv.append("--listen=-");
+ _ = try step.evalZigProcess(argv.items, prog_node);
self.output_file.path = full_dest_path;
try man.writeManifest();
}
-
-/// TODO consolidate this with the same function in RunStep?
-/// Also properly deal with concurrency (see open PR)
-fn failWithCacheError(man: std.Build.Cache.Manifest, err: anyerror) noreturn {
- const i = man.failed_file_index orelse failWithSimpleError(err);
- const pp = man.files.items[i].prefixed_path orelse failWithSimpleError(err);
- const prefix = man.cache.prefixes()[pp.prefix].path orelse "";
- std.debug.print("{s}: {s}/{s}\n", .{ @errorName(err), prefix, pp.sub_path });
- std.process.exit(1);
-}
-
-fn failWithSimpleError(err: anyerror) noreturn {
- std.debug.print("{s}\n", .{@errorName(err)});
- std.process.exit(1);
-}