zig/lib/std/Build/Step
hemisputnik 99229ceb55 std.Io.{Writer|Duration}: move duration formatting to a format method
Remove the `{D}` format specifier. It is moved into `std.Io.Duration` as
a format method.

Migration plan:

```diff
-writer.print("{D}", .{ns});
+writer.print("{f}", .{std.Io.Duration{ .nanoseconds = ns }});
```

All instances where `{D}` was used have been changed to use
`std.Io.Duration` and `{f}`.

Fixes #31281
2026-02-28 02:46:04 +01:00
..
CheckFile.zig update all readFileAlloc() to accept Io instance 2025-12-23 22:15:08 -08:00
CheckObject.zig align end of elf archives 2026-02-13 17:58:09 -05:00
Compile.zig allow specifying mode in --debug-rt 2026-02-13 17:58:09 -05:00
ConfigHeader.zig std: rename other Dir "make" functions to "create" 2025-12-23 22:15:11 -08:00
Fail.zig make zig compiler processes live across rebuilds 2024-07-14 19:51:16 -07:00
Fmt.zig std: move child process APIs to std.Io 2026-01-04 00:27:08 -08:00
InstallArtifact.zig Add process.Child.Cwd, use it for cwd and remove cwd_dir field 2026-02-02 01:41:35 -08:00
InstallDir.zig update all access() to access(io) 2025-12-23 22:15:08 -08:00
InstallFile.zig Build: add install commands to --verbose output 2025-06-19 11:45:06 -04:00
ObjCopy.zig std: rename other Dir "make" functions to "create" 2025-12-23 22:15:11 -08:00
Options.zig std.process: currentDir -> currentPath 2026-01-29 18:47:58 -08:00
Run.zig std.Io.{Writer|Duration}: move duration formatting to a format method 2026-02-28 02:46:04 +01:00
TranslateC.zig std.Build.Step.TranslateC: forward --cache-dir and --global-cache-dir flags 2025-08-26 03:54:00 +00:00
UpdateSourceFiles.zig std: rename other Dir "make" functions to "create" 2025-12-23 22:15:11 -08:00
WriteFile.zig std.Io: introduce random and randomSecure 2026-01-07 11:03:36 -08:00