lib platform parsing: Whitelist darwin10 and darwin14 as stopgap

Something better should be done longer term to support such version
suffixes.
This commit is contained in:
John Ericson 2017-04-25 23:25:37 -04:00
parent d34079c2d9
commit 80ed251f17

View file

@ -83,6 +83,9 @@ rec {
solaris = { execFormat = elf; families = { inherit unix; }; };
windows = { execFormat = pe; families = { }; };
} // { # aliases
# TODO(@Ericson2314): Handle these Darwin version suffixes more generally.
darwin10 = kernels.darwin;
darwin14 = kernels.darwin;
win32 = kernels.windows;
};