std.Build.addAssembly: add missing .kind

This commit is contained in:
Asherah Connor 2023-02-09 08:45:49 +11:00 committed by Veikka Tuominen
parent a5d25fabda
commit c6344866f9

View File

@ -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,