| author | |
| committer | |
| log | c4f96ea745ae2aa56ec5cb2c871e5b3d86b04c8f |
| tree | 70b6771fe62525573aad2800736ecdfef53a1442 |
| parent | 52f4e934a963a5497bd5dd9834e6c419cd171ae4 |
| signature |
See #13641 files changed, 5 insertions(+), 1 deletions(-)
build.zig+5-1| ... | ... | @@ -76,7 +76,11 @@ pub fn build(b: *Builder) !void { |
| 76 | 76 | |
| 77 | 77 | const test_stage2_step = b.step("test-stage2", "Run the stage2 compiler tests"); |
| 78 | 78 | test_stage2_step.dependOn(&test_stage2.step); |
| 79 | test_step.dependOn(test_stage2_step); | |
| 79 | ||
| 80 | // TODO see https://github.com/ziglang/zig/issues/1364 | |
| 81 | if (false) { | |
| 82 | test_step.dependOn(test_stage2_step); | |
| 83 | } | |
| 80 | 84 | |
| 81 | 85 | const all_modes = []builtin.Mode{ |
| 82 | 86 | builtin.Mode.Debug, |