commit ec2b156720dec2873ca0a7958b282bfda12d5250 (tree)
parent 71ac3f15b3740974e1bac091f32fc56933134ca2
Author: Andrew Kelley <andrew@ziglang.org>
Date: Wed, 11 Mar 2026 17:11:01 -0700
std: rename zig.Configuration to Build.Configuration
Diffstat:
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/BRANCH_TODO b/BRANCH_TODO
@@ -1,4 +1,3 @@
-* rename std.zig.Configuration to std.Build.Configuration
* replace union(@This().Tag)
* replace b.dupe() with string internment
* don't forget to add -listen arg back
@@ -10,3 +9,4 @@
* get zig tests passing
* test a bunch of third party projects / help people migrate
* refactor with DefaultingEnum
+* add flag for compiling maker in debug mode
diff --git a/lib/std/Build.zig b/lib/std/Build.zig
@@ -22,7 +22,7 @@ pub const Step = @import("Build/Step.zig");
pub const Module = @import("Build/Module.zig");
pub const abi = @import("Build/abi.zig");
/// The serialized output of configure phase ingested by make phase.
-pub const Configuration = @import("zig/Configuration.zig");
+pub const Configuration = @import("Build/Configuration.zig");
/// Shared state among all Build instances.
graph: *Graph,
diff --git a/lib/std/zig/Configuration.zig b/lib/std/Build/Configuration.zig