boost: Supply some configure flags for mingw.

Otherwise, Boost.Build is trying to compile against pthread and
desperately searches for icu/iconv.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2015-04-12 10:32:18 +02:00 committed by Vladimír Čunát
parent ad033f7665
commit 2d760a28b3

View File

@ -76,6 +76,9 @@ let
"--user-config=user-config.jam"
"toolset=gcc-cross"
"--without-python"
] ++ optionals stdenv.isCrossWin [
"target-os=windows"
"threadapi=win32"
];
crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags);