diff options
| author | OPNA2608 <opna2608@protonmail.com> | 2025-10-11 21:00:33 +0200 |
|---|---|---|
| committer | OPNA2608 <opna2608@protonmail.com> | 2025-10-11 21:00:33 +0200 |
| commit | 37492033ebaca346bc3d16ac02b18170378105a6 (patch) | |
| tree | 3ed37d7e6fae18e2944f03e362ccc95887efe1ae /lib/systems | |
| parent | remnote: 1.21.5 -> 1.21.8 (#451063) (diff) | |
| download | nixpkgs-37492033ebaca346bc3d16ac02b18170378105a6.tar.gz | |
lib.systems.parse: Default glibc ppc64 to ELFv1 ABI
Diffstat (limited to 'lib/systems')
| -rw-r--r-- | lib/systems/parse.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/systems/parse.nix b/lib/systems/parse.nix index bbb0fa9d5582..c76aa592fc28 100644 --- a/lib/systems/parse.nix +++ b/lib/systems/parse.nix @@ -919,9 +919,9 @@ rec { else if isLinux parsed || isWindows parsed then if isAarch32 parsed then if versionAtLeast (parsed.cpu.version or "0") "6" then abis.gnueabihf else abis.gnueabi - # Default ppc64 BE to ELFv2 + # Default ppc64 BE to ELFv1 else if isPower64 parsed && isBigEndian parsed then - abis.gnuabielfv2 + abis.gnuabielfv1 else abis.gnu else |
