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:
parent
38639e08a0
commit
752a8c516d
|
@ -364,8 +364,8 @@ rec {
|
||||||
musleabihf = { float = "hard"; };
|
musleabihf = { float = "hard"; };
|
||||||
musl = {};
|
musl = {};
|
||||||
|
|
||||||
uclibceabihf = { float = "soft"; };
|
uclibceabi = { float = "soft"; };
|
||||||
uclibceabi = { float = "hard"; };
|
uclibceabihf = { float = "hard"; };
|
||||||
uclibc = {};
|
uclibc = {};
|
||||||
|
|
||||||
unknown = {};
|
unknown = {};
|
||||||
|
|
Loading…
Reference in a new issue