Merge pull request #110828 from r-burns/ppc64-riscv-linux-arch

lib/systems: fix linuxArch for power + riscv
This commit is contained in:
John Ericson 2021-01-25 21:38:33 -05:00 committed by GitHub
commit 054f792d31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,6 +92,8 @@ rec {
else if final.isx86_32 then "i386"
else if final.isx86_64 then "x86_64"
else if final.isMips then "mips"
else if final.isPower then "powerpc"
else if final.isRiscV then "riscv"
else final.parsed.cpu.name;
qemuArch =