| author | |
| committer | |
| log | 2c8b201d057b556edaf8688a4e53b25cd90198f3 |
| tree | 15a6b2697930f5bca92ded7b7d63ad54256be403 |
| parent | ab84ba39d03f59599ddfad91c00edf78a40edd70 |
for the test-toolchain step1 files changed, 3 insertions(+), 1 deletions(-)
build.zig+3-1| ... | ... | @@ -105,7 +105,9 @@ pub fn build(b: *Builder) !void { |
| 105 | 105 | exe.install(); |
| 106 | 106 | exe.setBuildMode(mode); |
| 107 | 107 | exe.setTarget(target); |
| 108 | toolchain_step.dependOn(&exe.step); | |
| 108 | if (!skip_stage2_tests) { | |
| 109 | toolchain_step.dependOn(&exe.step); | |
| 110 | } | |
| 109 | 111 | b.default_step.dependOn(&exe.step); |
| 110 | 112 | exe.single_threaded = single_threaded; |
| 111 | 113 |