Skip to content

Commit 1914d1a

Browse files
committed
Lld: fix implib emit path
Resolves: #24993
1 parent 2cdafe9 commit 1914d1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/link/Lld.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

0 commit comments

Comments
 (0)