| ... | ... | @@ -407,7 +407,7 @@ fn findNativeCrtDirWindows( |
| 407 | 407 | var result_buf = std.ArrayList(u8).init(allocator); |
| 408 | 408 | defer result_buf.deinit(); |
| 409 | 409 | |
| 410 | | const arch_sub_dir = switch (builtin.target.cpu.arch) { |
| 410 | const arch_sub_dir = switch (args.target.cpu.arch) { |
| 411 | 411 | .x86 => "x86", |
| 412 | 412 | .x86_64 => "x64", |
| 413 | 413 | .arm, .armeb => "arm", |
| ... | ... | @@ -474,7 +474,7 @@ fn findNativeKernel32LibDir( |
| 474 | 474 | var result_buf = std.ArrayList(u8).init(allocator); |
| 475 | 475 | defer result_buf.deinit(); |
| 476 | 476 | |
| 477 | | const arch_sub_dir = switch (builtin.target.cpu.arch) { |
| 477 | const arch_sub_dir = switch (args.target.cpu.arch) { |
| 478 | 478 | .x86 => "x86", |
| 479 | 479 | .x86_64 => "x64", |
| 480 | 480 | .arm, .armeb => "arm", |