Telling hydra to build the cross-mingw32

svn path=/nixpkgs/trunk/; revision=21632
This commit is contained in:
Lluís Batlle i Rossell 2010-05-06 18:47:35 +00:00
parent 24c157910c
commit c65304ff49

View file

@ -121,4 +121,19 @@ let
};
in {
crossUltraSparcLinux = mapTestOnCross crossSystem basic;
}) // (
/* Test some cross builds on mingw32 */
let
crossSystem = {
config = "i686-pc-mingw32";
arch = "x86";
libc = "msvcrt"; # This distinguishes the mingw (non posix) toolchain
platform = {};
};
in {
crossMingw32 = mapTestOnCross crossSystem {
wxGTK.hostDrv = nativePlatforms;
gccCrossStageFinal = nativePlatforms;
};
})