From 37492033ebaca346bc3d16ac02b18170378105a6 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sat, 11 Oct 2025 21:00:33 +0200 Subject: [PATCH] lib.systems.parse: Default glibc ppc64 to ELFv1 ABI --- lib/systems/parse.nix | 4 ++-- 1 file 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