| ... | ... | @@ -421,7 +421,7 @@ fn findNativeCrtDirWindows( |
| 421 | 421 | const arch_sub_dir = switch (target.cpu.arch) { |
| 422 | 422 | .x86 => "x86", |
| 423 | 423 | .x86_64 => "x64", |
| 424 | | .arm, .armeb => "arm", |
| 424 | .thumb => "arm", |
| 425 | 425 | .aarch64 => "arm64", |
| 426 | 426 | else => return error.UnsupportedArchitecture, |
| 427 | 427 | }; |
| ... | ... | @@ -488,7 +488,7 @@ fn findNativeKernel32LibDir( |
| 488 | 488 | const arch_sub_dir = switch (args.target.cpu.arch) { |
| 489 | 489 | .x86 => "x86", |
| 490 | 490 | .x86_64 => "x64", |
| 491 | | .arm, .armeb => "arm", |
| 491 | .thumb => "arm", |
| 492 | 492 | .aarch64 => "arm64", |
| 493 | 493 | else => return error.UnsupportedArchitecture, |
| 494 | 494 | }; |