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
78012b4845
commit
e6e93d82b0
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}));
|
try argv.append(try allocPrint(arena, "-OUT:{s}", .{full_out_path}));
|
||||||
|
|
||||||
if (comp.emit_implib) |raw_emit_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}));
|
try argv.append(try allocPrint(arena, "-IMPLIB:{f}", .{path}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue