mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Lld: fix implib emit path
Resolves: https://github.com/ziglang/zig/issues/24993
This commit is contained in:
parent
2cdafe9106
commit
1914d1a6e5
1 changed files with 1 additions and 1 deletions
|
|
@ -505,7 +505,7 @@ fn coffLink(lld: *Lld, arena: Allocator) !void {
|
|||
try argv.append(try allocPrint(arena, "-OUT:{s}", .{full_out_path}));
|
||||
|
||||
if (comp.emit_implib) |raw_emit_path| {
|
||||
const path = try comp.resolveEmitPathFlush(arena, .temp, raw_emit_path);
|
||||
const path = try comp.resolveEmitPathFlush(arena, .artifact, raw_emit_path);
|
||||
try argv.append(try allocPrint(arena, "-IMPLIB:{f}", .{path}));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue