| ... | @@ -1772,6 +1772,10 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { | ... | @@ -1772,6 +1772,10 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 1772 | if (options.skip_libc and test_target.link_libc == true) | 1772 | if (options.skip_libc and test_target.link_libc == true) |
| 1773 | continue; | 1773 | continue; |
| 1774 | | 1774 | |
| | 1775 | // We can't provide MSVC libc when cross-compiling. |
| | 1776 | if (target.abi == .msvc and test_target.link_libc == true and builtin.os.tag != .windows) |
| | 1777 | continue; |
| | 1778 | |
| 1775 | if (options.skip_single_threaded and test_target.single_threaded == true) | 1779 | if (options.skip_single_threaded and test_target.single_threaded == true) |
| 1776 | continue; | 1780 | continue; |
| 1777 | | 1781 | |