lib/systems: Add uClibc just like MUSL

This commit is contained in:
John Ericson
2018-05-09 23:39:23 -04:00
parent 3fa0ba9177
commit e42a7a5c0b
3 changed files with 5 additions and 0 deletions
+1
View File
@@ -36,6 +36,7 @@ rec {
isAndroid = [ { abi = abis.android; } { abi = abis.androideabi; } ];
isMusl = with abis; map (a: { abi = a; }) [ musl musleabi musleabihf ];
isUClibc = with abis; map (a: { abi = a; }) [ uclibc uclibceabi uclibceabihf ];
isKexecable = map (family: { kernel = kernels.linux; cpu.family = family; })
[ "x86" "arm" "aarch64" "mips" ];