openssl: Support iOS cross compilation (in theory)

This commit is contained in:
John Ericson 2018-05-01 01:13:44 -04:00
parent af55a0c300
commit 0c3efb9ba0

View file

@ -48,6 +48,8 @@ let
then "./Configure mingw${toString hostPlatform.parsed.cpu.bits}"
else if hostPlatform.isLinux
then "./Configure linux-generic${toString hostPlatform.parsed.cpu.bits}"
else if hostPlatform.isiOS
then "./Configure ios${toString hostPlatform.parsed.cpu.bits}-cross"
else
throw "Not sure what configuration to use for ${hostPlatform.config}"
);