| author | |
| committer | |
| log | e6e93d82b0272ce34d12ee3c59428a3b83caf447 |
| tree | 9ad61b0949aaf4aaf7fcc1f5e31cf77e93282acd |
| parent | 78012b4845319cbef27e656554c92b79e7cb8a3a |
| signature |
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 |