lib.systems.gnu: Accept gnueabi as a gnu platform
This commit is contained in:
parent
a09aa86ece
commit
8b32cfdbc0
|
@ -19,7 +19,11 @@ in rec {
|
||||||
darwin = [ patterns.isDarwin ];
|
darwin = [ patterns.isDarwin ];
|
||||||
freebsd = [ patterns.isFreeBSD ];
|
freebsd = [ patterns.isFreeBSD ];
|
||||||
# Should be better, but MinGW is unclear, and HURD is bit-rotted.
|
# Should be better, but MinGW is unclear, and HURD is bit-rotted.
|
||||||
gnu = [ { kernel = parse.kernels.linux; abi = parse.abis.gnu; } ];
|
gnu = [
|
||||||
|
{ kernel = parse.kernels.linux; abi = parse.abis.gnu; }
|
||||||
|
{ kernel = parse.kernels.linux; abi = parse.abis.gnueabi; }
|
||||||
|
{ kernel = parse.kernels.linux; abi = parse.abis.gnueabihf; }
|
||||||
|
];
|
||||||
illumos = [ patterns.isSunOS ];
|
illumos = [ patterns.isSunOS ];
|
||||||
linux = [ patterns.isLinux ];
|
linux = [ patterns.isLinux ];
|
||||||
netbsd = [ patterns.isNetBSD ];
|
netbsd = [ patterns.isNetBSD ];
|
||||||
|
|
Loading…
Reference in New Issue