0
0
Fork 0
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:
OPNA2608 2025-06-20 15:31:57 +02:00 committed by Alyssa Ross
parent 014bedd228
commit f5d07900bf

View file

@ -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 = {