lib.systems.parse: Default glibc ppc64 to ELFv1 ABI

This commit is contained in:
OPNA2608
2025-10-11 21:00:33 +02:00
parent 749cabed2c
commit 37492033eb

View File

@@ -919,9 +919,9 @@ rec {
else if isLinux parsed || isWindows parsed then else if isLinux parsed || isWindows parsed then
if isAarch32 parsed then if isAarch32 parsed then
if versionAtLeast (parsed.cpu.version or "0") "6" then abis.gnueabihf else abis.gnueabi 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 else if isPower64 parsed && isBigEndian parsed then
abis.gnuabielfv2 abis.gnuabielfv1
else else
abis.gnu abis.gnu
else else