commit fbbb54bab212e8db251ea7409945d5cecfd732c6 (tree) parent 2dbf66dd698601ae8aaee86d5ba6a9078dda0a8e Author: Andrew Kelley <andrew@ziglang.org> Date: Fri, 20 Dec 2024 22:14:51 -0800 std.io: remove the "temporary workaround" for stage2_aarch64 Diffstat:
| M | lib/std/io.zig | | | 12 | ------------ |
1 file changed, 0 insertions(+), 12 deletions(-)
diff --git a/lib/std/io.zig b/lib/std/io.zig @@ -16,10 +16,6 @@ const Allocator = std.mem.Allocator; fn getStdOutHandle() posix.fd_t { if (is_windows) { - if (builtin.zig_backend == .stage2_aarch64) { - // TODO: this is just a temporary workaround until we advance aarch64 backend further along. - return windows.GetStdHandle(windows.STD_OUTPUT_HANDLE) catch windows.INVALID_HANDLE_VALUE; - } return windows.peb().ProcessParameters.hStdOutput; } @@ -36,10 +32,6 @@ pub fn getStdOut() File { fn getStdErrHandle() posix.fd_t { if (is_windows) { - if (builtin.zig_backend == .stage2_aarch64) { - // TODO: this is just a temporary workaround until we advance aarch64 backend further along. - return windows.GetStdHandle(windows.STD_ERROR_HANDLE) catch windows.INVALID_HANDLE_VALUE; - } return windows.peb().ProcessParameters.hStdError; } @@ -56,10 +48,6 @@ pub fn getStdErr() File { fn getStdInHandle() posix.fd_t { if (is_windows) { - if (builtin.zig_backend == .stage2_aarch64) { - // TODO: this is just a temporary workaround until we advance aarch64 backend further along. - return windows.GetStdHandle(windows.STD_INPUT_HANDLE) catch windows.INVALID_HANDLE_VALUE; - } return windows.peb().ProcessParameters.hStdInput; }