mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
fix: windows libc lib paths for x86-windows-msvc
This commit is contained in:
parent
0585ed0641
commit
fed8df9217
1 changed files with 2 additions and 2 deletions
|
|
@ -407,7 +407,7 @@ fn findNativeCrtDirWindows(
|
|||
var result_buf = std.ArrayList(u8).init(allocator);
|
||||
defer result_buf.deinit();
|
||||
|
||||
const arch_sub_dir = switch (builtin.target.cpu.arch) {
|
||||
const arch_sub_dir = switch (args.target.cpu.arch) {
|
||||
.x86 => "x86",
|
||||
.x86_64 => "x64",
|
||||
.arm, .armeb => "arm",
|
||||
|
|
@ -474,7 +474,7 @@ fn findNativeKernel32LibDir(
|
|||
var result_buf = std.ArrayList(u8).init(allocator);
|
||||
defer result_buf.deinit();
|
||||
|
||||
const arch_sub_dir = switch (builtin.target.cpu.arch) {
|
||||
const arch_sub_dir = switch (args.target.cpu.arch) {
|
||||
.x86 => "x86",
|
||||
.x86_64 => "x64",
|
||||
.arm, .armeb => "arm",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue