authorgravatar for leecannon@leecannon.xyzLee Cannon <leecannon@leecannon.xyz> 2023-10-20 12:03:45+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-21 20:46:28-04:00
log3cd3052d4d303dbae7d517fa40f6d171c957afdd
tree359aad51192560afb2ced38aede5c1b517465c00
parentc45af2af6168c7a3cf1bf9e50f6fc1a95b486ce8

fix `std.Build.addAssembly`


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Build.zig+1-1
......@@ -839,7 +839,7 @@ pub fn addAssembly(b: *Build, options: AssemblyOptions) *Step.Compile {
839839 .max_rss = options.max_rss,
840840 .zig_lib_dir = options.zig_lib_dir orelse b.zig_lib_dir,
841841 });
842 obj_step.addAssemblyLazyPath(options.source_file.dupe(b));
842 obj_step.addAssemblyFile(options.source_file);
843843 return obj_step;
844844}
845845