authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-10-01 13:18:00+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-10-02 02:31:44+01:00
log1914d1a6e58b0c37859869096871f1f1154945c6
tree828b5dbcec566bda49874128457550bebdb1cb9f
parent2cdafe91065c5d477563361a8fe1f637898ca285

Lld: fix implib emit path

Resolves: https://github.com/ziglang/zig/issues/24993

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

src/link/Lld.zig+1-1
......@@ -505,7 +505,7 @@ fn coffLink(lld: *Lld, arena: Allocator) !void {
505505 try argv.append(try allocPrint(arena, "-OUT:{s}", .{full_out_path}));
506506
507507 if (comp.emit_implib) |raw_emit_path| {
508 const path = try comp.resolveEmitPathFlush(arena, .temp, raw_emit_path);
508 const path = try comp.resolveEmitPathFlush(arena, .artifact, raw_emit_path);
509509 try argv.append(try allocPrint(arena, "-IMPLIB:{f}", .{path}));
510510 }
511511