3
0
Fork 0
forked from mirrors/nixpkgs

lib/systems: Fix uclibc float-abi being flipped

uclibceabihf and uclibceabi's float hardness was flipped, which causes many headaches
This commit is contained in:
Levi Wright 2022-03-07 17:05:51 +00:00 committed by GitHub
parent 38639e08a0
commit 752a8c516d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -364,8 +364,8 @@ rec {
musleabihf = { float = "hard"; };
musl = {};
uclibceabihf = { float = "soft"; };
uclibceabi = { float = "hard"; };
uclibceabi = { float = "soft"; };
uclibceabihf = { float = "hard"; };
uclibc = {};
unknown = {};