mirror of
https://github.com/ziglang/zig.git
synced 2026-01-03 03:53:20 +00:00
revert disabling aarch64 skip
I was too optimistic in disabling the aarch64 skip, assuming it was also caused by ConEmu. Unfortunately I don't have access to a machine for testing.
This commit is contained in:
parent
f522fb9ca3
commit
7dc0014769
@ -7,10 +7,14 @@ pub fn build(b: *std.Build) void {
|
||||
|
||||
const optimize: std.builtin.OptimizeMode = .Debug;
|
||||
|
||||
if (builtin.os.tag == .windows and std.process.hasEnvVarConstant("ConEmuHWND")) {
|
||||
if (builtin.os.tag == .windows and
|
||||
// https://github.com/ziglang/zig/issues/13685
|
||||
(builtin.cpu.arch == .aarch64 or
|
||||
// ConEmu injects environment variables into processes before they are executed
|
||||
// depending on user settings. This obviously invalidates the test, so skipping
|
||||
// it is the best option.
|
||||
std.process.hasEnvVarConstant("ConEmuHWND")))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user