aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Build/Step/ConfigHeader.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-12-08 17:21:52 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-12-23 22:15:08 -0800
commit4218344dd3178f2fd3d9d00e9ff6895ee344df6d (patch)
tree38a1378b45349bcd182f6bdb721dadb275c1d02e /lib/std/Build/Step/ConfigHeader.zig
parent950d18ef695bb7a28397e080dc3c201559ec4ee2 (diff)
downloadzig-4218344dd3178f2fd3d9d00e9ff6895ee344df6d.tar.gz
zig-4218344dd3178f2fd3d9d00e9ff6895ee344df6d.zip
std.Build.Cache: remove readSmallFile and writeSmallFile
These were to support optimizations involving detecting when to avoid calling into LLD, which are no longer implemented.
Diffstat (limited to 'lib/std/Build/Step/ConfigHeader.zig')
-rw-r--r--lib/std/Build/Step/ConfigHeader.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Build/Step/ConfigHeader.zig b/lib/std/Build/Step/ConfigHeader.zig
index f377959610..589110d4c4 100644
--- a/lib/std/Build/Step/ConfigHeader.zig
+++ b/lib/std/Build/Step/ConfigHeader.zig
@@ -264,7 +264,7 @@ fn make(step: *Step, options: Step.MakeOptions) !void {
});
};
- b.cache_root.handle.writeFile(.{ .sub_path = sub_path, .data = output }) catch |err| {
+ b.cache_root.handle.writeFile(io, .{ .sub_path = sub_path, .data = output }) catch |err| {
return step.fail("unable to write file '{f}{s}': {s}", .{
b.cache_root, sub_path, @errorName(err),
});