Merge pull request #5527 from shawnanastasio/ppc64le

Implement support for powerpc64{,le}
This commit is contained in:
Andrew Kelley
2020-09-10 15:56:27 -04:00
committed by GitHub
10 changed files with 822 additions and 7 deletions

View File

@@ -20,6 +20,7 @@ pub usingnamespace switch (builtin.arch) {
.arm => @import("linux/arm-eabi.zig"),
.riscv64 => @import("linux/riscv64.zig"),
.mips, .mipsel => @import("linux/mips.zig"),
.powerpc64, .powerpc64le => @import("linux/powerpc64.zig"),
else => struct {},
};