| author | |
| committer | |
| log | 1914d1a6e58b0c37859869096871f1f1154945c6 |
| tree | 828b5dbcec566bda49874128457550bebdb1cb9f |
| parent | 2cdafe91065c5d477563361a8fe1f637898ca285 |
Resolves: https://github.com/ziglang/zig/issues/249931 files changed, 1 insertions(+), 1 deletions(-)
src/link/Lld.zig+1-1| ... | ... | @@ -505,7 +505,7 @@ fn coffLink(lld: *Lld, arena: Allocator) !void { |
| 505 | 505 | try argv.append(try allocPrint(arena, "-OUT:{s}", .{full_out_path})); |
| 506 | 506 | |
| 507 | 507 | 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); | |
| 509 | 509 | try argv.append(try allocPrint(arena, "-IMPLIB:{f}", .{path})); |
| 510 | 510 | } |
| 511 | 511 |