mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
lib.systems: add ppc32 target
This commit is contained in:
parent
69cde4d543
commit
b6d48619ed
|
|
@ -45,6 +45,7 @@ let
|
|||
"mips64-linux"
|
||||
"mips64el-linux"
|
||||
"mipsel-linux"
|
||||
"powerpc-linux"
|
||||
"powerpc64-linux"
|
||||
"powerpc64le-linux"
|
||||
"riscv32-linux"
|
||||
|
|
|
|||
|
|
@ -36,6 +36,11 @@ rec {
|
|||
};
|
||||
};
|
||||
|
||||
ppc32 = {
|
||||
config = "powerpc-unknown-linux-gnu";
|
||||
rust.rustcTarget = "powerpc-unknown-linux-gnu";
|
||||
};
|
||||
|
||||
sheevaplug = {
|
||||
config = "armv5tel-unknown-linux-gnueabi";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ lib.runTests (
|
|||
];
|
||||
testmmix = mseteq mmix [ "mmix-mmixware" ];
|
||||
testpower = mseteq power [
|
||||
"powerpc-linux"
|
||||
"powerpc-netbsd"
|
||||
"powerpc-none"
|
||||
"powerpc64-linux"
|
||||
|
|
@ -174,6 +175,7 @@ lib.runTests (
|
|||
"mips64-linux"
|
||||
"mips64el-linux"
|
||||
"mipsel-linux"
|
||||
"powerpc-linux"
|
||||
"powerpc64-linux"
|
||||
"powerpc64le-linux"
|
||||
"riscv32-linux"
|
||||
|
|
|
|||
Loading…
Reference in a new issue