| ... | @@ -74,7 +74,8 @@ pub fn build(b: *Builder) !void { | ... | @@ -74,7 +74,8 @@ pub fn build(b: *Builder) !void { |
| 74 | const skip_non_native = b.option(bool, "skip-non-native", "Main test suite skips non-native builds") orelse false; | 74 | const skip_non_native = b.option(bool, "skip-non-native", "Main test suite skips non-native builds") orelse false; |
| 75 | const skip_self_hosted = b.option(bool, "skip-self-hosted", "Main test suite skips building self hosted compiler") orelse false; | 75 | const skip_self_hosted = b.option(bool, "skip-self-hosted", "Main test suite skips building self hosted compiler") orelse false; |
| 76 | if (!skip_self_hosted) { | 76 | if (!skip_self_hosted) { |
| 77 | test_step.dependOn(&exe.step); | 77 | // TODO re-enable this after https://github.com/ziglang/zig/issues/2377 |
| | 78 | //test_step.dependOn(&exe.step); |
| 78 | } | 79 | } |
| 79 | const verbose_link_exe = b.option(bool, "verbose-link", "Print link command for self hosted compiler") orelse false; | 80 | const verbose_link_exe = b.option(bool, "verbose-link", "Print link command for self hosted compiler") orelse false; |
| 80 | exe.setVerboseLink(verbose_link_exe); | 81 | exe.setVerboseLink(verbose_link_exe); |