| author | |
| committer | |
| log | 7cae6b8fa78a75b62c5e2a69afda95b3c3824a5b |
| tree | 03332bdf4674ba2ef29951b333a7fa60718377b8 |
| parent | c8ea81bf96e9acae0a2f627e354a92af575008d9 |
| signature |
We can't provide MSVC libc when cross-compiling (yet?).1 files changed, 4 insertions(+), 0 deletions(-)
test/tests.zig+4| ... | ... | @@ -1772,6 +1772,10 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 1772 | 1772 | if (options.skip_libc and test_target.link_libc == true) |
| 1773 | 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 | 1779 | if (options.skip_single_threaded and test_target.single_threaded == true) |
| 1776 | 1780 | continue; |
| 1777 | 1781 |