diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-01-31 13:44:06 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-01-31 15:09:35 -0700 |
| commit | 16cdd1297ebfac534615eaeb8439a4e1de71837c (patch) | |
| tree | b70dae5d7206c02f7cf19167de1d4ef6604f3dca /lib/std/std.zig | |
| parent | 77544683ddd5f4d577ecc9c92a2b52a276aed2a6 (diff) | |
| download | zig-16cdd1297ebfac534615eaeb8439a4e1de71837c.tar.gz zig-16cdd1297ebfac534615eaeb8439a4e1de71837c.zip | |
rename std.Build.LibExeObjStep to std.Build.CompileStep
This matches the nomenclature internally: a Compilation is the main type
that represents a single invokation of the compiler.
Diffstat (limited to 'lib/std/std.zig')
| -rw-r--r-- | lib/std/std.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/std.zig b/lib/std/std.zig index e0318ceb43..7440b49662 100644 --- a/lib/std/std.zig +++ b/lib/std/std.zig @@ -97,8 +97,10 @@ pub const zig = @import("zig.zig"); pub const start = @import("start.zig"); ///// Deprecated. Use `std.Build` instead. +///// TODO: remove this after releasing 0.11.0 //pub const build = struct { // /// Deprecated. Use `std.Build` instead. +// /// TODO: remove this after releasing 0.11.0 // pub const Builder = Build; //}; |
