Merge pull request #43890 from matthewbauer/mingw-fixes

Mingw fixes
This commit is contained in:
Matthew Bauer
2018-07-21 17:04:20 -04:00
committed by GitHub
10 changed files with 114 additions and 8 deletions

View File

@@ -44,7 +44,9 @@ let
if hostPlatform == buildPlatform
then "./config"
else if hostPlatform.isMinGW
then "./Configure mingw${toString hostPlatform.parsed.cpu.bits}"
then "./Configure mingw${optionalString
(hostPlatform.parsed.cpu.bits != 32)
(toString hostPlatform.parsed.cpu.bits)}"
else if hostPlatform.isLinux
then "./Configure linux-generic${toString hostPlatform.parsed.cpu.bits}"
else if hostPlatform.isiOS