summary refs log tree commit diff
path: root/pkgs/top-level/release-cross.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-05-06 18:47:35 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-05-06 18:47:35 +0000
commitc65304ff49524abc56565c3dcfeb4b5bd124c3c6 (patch)
tree6cdeef46226ebdfc92059cc593059eb2478d0a9e /pkgs/top-level/release-cross.nix
parent24c157910c817e7b63710c219eaa45e42a51b4ec (diff)
downloadnixlib-c65304ff49524abc56565c3dcfeb4b5bd124c3c6.tar
nixlib-c65304ff49524abc56565c3dcfeb4b5bd124c3c6.tar.gz
nixlib-c65304ff49524abc56565c3dcfeb4b5bd124c3c6.tar.bz2
nixlib-c65304ff49524abc56565c3dcfeb4b5bd124c3c6.tar.lz
nixlib-c65304ff49524abc56565c3dcfeb4b5bd124c3c6.tar.xz
nixlib-c65304ff49524abc56565c3dcfeb4b5bd124c3c6.tar.zst
nixlib-c65304ff49524abc56565c3dcfeb4b5bd124c3c6.zip
Telling hydra to build the cross-mingw32
svn path=/nixpkgs/trunk/; revision=21632
Diffstat (limited to 'pkgs/top-level/release-cross.nix')
-rw-r--r--pkgs/top-level/release-cross.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index 571484f05409..93b0b517bd17 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;
+  };
 })