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