| ... | ... | @@ -7,10 +7,14 @@ pub fn build(b: *std.Build) void { |
| 7 | 7 | |
| 8 | 8 | const optimize: std.builtin.OptimizeMode = .Debug; |
| 9 | 9 | |
| 10 | | if (builtin.os.tag == .windows and std.process.hasEnvVarConstant("ConEmuHWND")) { |
| 10 | if (builtin.os.tag == .windows and |
| 11 | // https://github.com/ziglang/zig/issues/13685 |
| 12 | (builtin.cpu.arch == .aarch64 or |
| 11 | 13 | // ConEmu injects environment variables into processes before they are executed |
| 12 | 14 | // depending on user settings. This obviously invalidates the test, so skipping |
| 13 | 15 | // it is the best option. |
| 16 | std.process.hasEnvVarConstant("ConEmuHWND"))) |
| 17 | { |
| 14 | 18 | return; |
| 15 | 19 | } |
| 16 | 20 | |