summary refs log tree commit diff
path: root/lib/systems/doubles.nix
diff options
context:
space:
mode:
authorRyan Burns <rtburns@protonmail.com>2021-03-15 19:22:57 -0700
committerRyan Burns <rtburns@protonmail.com>2021-03-15 19:27:41 -0700
commit8ea1660b9e45f36d597af201b0f752478388ca66 (patch)
tree4449e08083edf7315d2e95eaca2a14d408d3fc12 /lib/systems/doubles.nix
parentfa5c65b7b3e26877c0e1d7a1f372f85db06d07f1 (diff)
downloadnixpkgs-8ea1660b9e45f36d597af201b0f752478388ca66.tar
nixpkgs-8ea1660b9e45f36d597af201b0f752478388ca66.tar.gz
nixpkgs-8ea1660b9e45f36d597af201b0f752478388ca66.tar.bz2
nixpkgs-8ea1660b9e45f36d597af201b0f752478388ca66.tar.lz
nixpkgs-8ea1660b9e45f36d597af201b0f752478388ca66.tar.xz
nixpkgs-8ea1660b9e45f36d597af201b0f752478388ca66.tar.zst
nixpkgs-8ea1660b9e45f36d597af201b0f752478388ca66.zip
lib/systems: remove powerpc64 elfv1 support
I was specifying the ELF ABI using -elfv1 and -elfv2 target config
suffixes, which are nonstandard and no longer work with gnu-config.
Diffstat (limited to 'lib/systems/doubles.nix')
-rw-r--r--lib/systems/doubles.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/systems/doubles.nix b/lib/systems/doubles.nix
index 07327fa2273..8220bca249f 100644
--- a/lib/systems/doubles.nix
+++ b/lib/systems/doubles.nix
@@ -73,7 +73,7 @@ in {
   darwin        = filterDoubles predicates.isDarwin;
   freebsd       = filterDoubles predicates.isFreeBSD;
   # Should be better, but MinGW is unclear.
-  gnu           = filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.gnu; }) ++ filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.gnueabi; }) ++ filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.gnueabihf; }) ++ filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.elfv1; }) ++ filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.elfv2; });
+  gnu           = filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.gnu; }) ++ filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.gnueabi; }) ++ filterDoubles (matchAttrs { kernel = parse.kernels.linux; abi = parse.abis.gnueabihf; });
   illumos       = filterDoubles predicates.isSunOS;
   linux         = filterDoubles predicates.isLinux;
   netbsd        = filterDoubles predicates.isNetBSD;