mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
lib.systems.examples: Split glibc powerpc64 back into 2 ABI options
ELFv1 is the historically better supported one on glibc, ELFv2 seems to have some issues with our toolchain. Restore the option to pick the ABI with pkgsCross.
This commit is contained in:
parent
014bedd228
commit
f5d07900bf
1 changed files with 5 additions and 1 deletions
|
@ -21,9 +21,13 @@ rec {
|
|||
config = "powerpc64le-unknown-linux-musl";
|
||||
};
|
||||
|
||||
ppc64 = {
|
||||
ppc64-elfv1 = {
|
||||
config = "powerpc64-unknown-linux-gnuabielfv1";
|
||||
};
|
||||
ppc64-elfv2 = {
|
||||
config = "powerpc64-unknown-linux-gnuabielfv2";
|
||||
};
|
||||
ppc64 = ppc64-elfv2;
|
||||
ppc64-musl = {
|
||||
config = "powerpc64-unknown-linux-musl";
|
||||
gcc = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue