From c65304ff49524abc56565c3dcfeb4b5bd124c3c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 6 May 2010 18:47:35 +0000 Subject: [PATCH] Telling hydra to build the cross-mingw32 svn path=/nixpkgs/trunk/; revision=21632 --- pkgs/top-level/release-cross.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index 571484f0540..93b0b517bd1 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -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; + }; })