| author | |
| committer | |
| log | f10b5268e80d3f77198a55161427ad8ba6edce05 |
| tree | 893cf13709f5fc443f3dcda214a447d4446947a1 |
| parent | 3963be03ec76c080811c9599eff03825c0a83ea8 |
1 files changed, 2 insertions(+), 2 deletions(-)
test/standalone/issue_5825/build.zig+2-2| ... | ... | @@ -8,11 +8,11 @@ pub fn build(b: *std.Build) void { |
| 8 | 8 | // Building for the msvc abi requires a native MSVC installation |
| 9 | 9 | if (builtin.os.tag != .windows or builtin.cpu.arch != .x86_64) return; |
| 10 | 10 | |
| 11 | const target = .{ | |
| 11 | const target = b.resolveTargetQuery(.{ | |
| 12 | 12 | .cpu_arch = .x86_64, |
| 13 | 13 | .os_tag = .windows, |
| 14 | 14 | .abi = .msvc, |
| 15 | }; | |
| 15 | }); | |
| 16 | 16 | const optimize: std.builtin.OptimizeMode = .Debug; |
| 17 | 17 | const obj = b.addObject(.{ |
| 18 | 18 | .name = "issue_5825", |