Skip to content

Commit

Permalink
Remove reference to aarch64_32 in build.zig.
Browse files Browse the repository at this point in the history
This is gone in Zig master.
  • Loading branch information
alexrp committed Aug 3, 2024
1 parent 5be2c5d commit 4e41561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ pub fn build(b: *std.Build) anyerror!void {
// TODO: https://github.com/ziglang/zig/issues/20361
const libffi_works = !t.isDarwin() and switch (t.cpu.arch) {
// libffi only supports MSVC for Windows on Arm.
.aarch64, .aarch64_be, .aarch64_32 => t.os.tag != .windows,
.aarch64, .aarch64_be => t.os.tag != .windows,
// TODO: https://github.com/ziglang/zig/issues/10411
.arm, .armeb => t.getFloatAbi() != .soft and t.os.tag != .windows,
// TODO: https://github.com/llvm/llvm-project/issues/58377
Expand Down

0 comments on commit 4e41561

Please sign in to comment.