diff options
| author | Felix "xq" Queißner <git@random-projects.net> | 2023-07-26 16:32:50 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-07-30 11:18:50 -0700 |
| commit | 35d0a49db911e9c459902a021a5bfa05c97ca107 (patch) | |
| tree | 4c3d3c526fe4bcca50ca30fb1ec0ff1b785360f4 /test/tests.zig | |
| parent | 5c0181841081170a118d8e50af2a09f5006f59e1 (diff) | |
| download | zig-35d0a49db911e9c459902a021a5bfa05c97ca107.tar.gz zig-35d0a49db911e9c459902a021a5bfa05c97ca107.zip | |
Introduces Compile.forceBuild() and Compile.forceEmit(…)
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig index 0b317c5897..4174fc0147 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -588,7 +588,7 @@ pub fn addStandaloneTests( }); if (case.link_libc) exe.linkLibC(); - _ = exe.getEmittedBin(); // Force emission + exe.forceBuild(); step.dependOn(&exe.step); } |
