From 752a8c516dd4a92757377ce3f670048095dc5a3d Mon Sep 17 00:00:00 2001 From: Levi Wright Date: Mon, 7 Mar 2022 17:05:51 +0000 Subject: [PATCH] lib/systems: Fix uclibc float-abi being flipped uclibceabihf and uclibceabi's float hardness was flipped, which causes many headaches --- 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 8a88d8cfbe87..f0e87c30e473 100644 --- a/lib/systems/parse.nix +++ b/lib/systems/parse.nix @@ -364,8 +364,8 @@ rec { musleabihf = { float = "hard"; }; musl = {}; - uclibceabihf = { float = "soft"; }; - uclibceabi = { float = "hard"; }; + uclibceabi = { float = "soft"; }; + uclibceabihf = { float = "hard"; }; uclibc = {}; unknown = {};