| ... | ... | @@ -45,7 +45,9 @@ pub fn runAndCompare(self: *CheckObjectStep) *EmulatableRunStep { |
| 45 | 45 | assert(dependencies_len > 0); |
| 46 | 46 | const exe_step = self.step.dependencies.items[dependencies_len - 1]; |
| 47 | 47 | const exe = exe_step.cast(std.build.LibExeObjStep).?; |
| 48 | | return EmulatableRunStep.create(self.builder, "EmulatableRun", exe); |
| 48 | const emulatable_step = EmulatableRunStep.create(self.builder, "EmulatableRun", exe); |
| 49 | emulatable_step.step.dependOn(&self.step); |
| 50 | return emulatable_step; |
| 49 | 51 | } |
| 50 | 52 | |
| 51 | 53 | /// There two types of actions currently suported: |