zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c6344866f9f6a38acd41f4c0ed36dfe00896f825 (tree)
parent a5d25fabdaf7e68f375874b9bda402acaeb9545d
Author: Asherah Connor <asherah@hrzn.ee>
Date:   Thu,  9 Feb 2023 08:45:49 +1100

std.Build.addAssembly: add missing .kind

Diffstat:
Mlib/std/Build.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/lib/std/Build.zig b/lib/std/Build.zig @@ -535,6 +535,7 @@ pub const AssemblyOptions = struct { pub fn addAssembly(b: *Build, options: AssemblyOptions) *CompileStep { const obj_step = CompileStep.create(b, .{ .name = options.name, + .kind = .obj, .root_source_file = null, .target = options.target, .optimize = options.optimize,