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>2012-05-24 22:07:23 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-05-24 22:07:23 +0000
commit383b76df790a3722b005934f9799d3edc9fecb8e (patch)
tree1a7236ee847fa7c084e3e6433a2a3439b1d3308f /pkgs/top-level/release-cross.nix
parente9186a03b9eba84b830de16d341f3caedcac8ba7 (diff)
downloadnixpkgs-383b76df790a3722b005934f9799d3edc9fecb8e.tar
nixpkgs-383b76df790a3722b005934f9799d3edc9fecb8e.tar.gz
nixpkgs-383b76df790a3722b005934f9799d3edc9fecb8e.tar.bz2
nixpkgs-383b76df790a3722b005934f9799d3edc9fecb8e.tar.lz
nixpkgs-383b76df790a3722b005934f9799d3edc9fecb8e.tar.xz
nixpkgs-383b76df790a3722b005934f9799d3edc9fecb8e.tar.zst
nixpkgs-383b76df790a3722b005934f9799d3edc9fecb8e.zip
Fixing mingw-w64 builds. I can build simple C++ programs with gccCrossStageFinal.
I also add tests for hydra; let's see if it builds far.


svn path=/nixpkgs/trunk/; revision=34232
Diffstat (limited to 'pkgs/top-level/release-cross.nix')
-rw-r--r--pkgs/top-level/release-cross.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index 3c34ec4b0f6..a1af20acc77 100644
--- a/pkgs/top-level/release-cross.nix
+++ b/pkgs/top-level/release-cross.nix
@@ -164,6 +164,29 @@ in {
   };
 }) // (
 
+/* Test some cross builds on mingw-w64 */
+let
+  crossSystem = {
+      # That's the triplet they use in the mingw-w64 docs,
+      # and it's relevant for nixpkgs conditions.
+      config = "x86_64-w64-mingw32";
+      arch = "x86_64"; # Irrelevant
+      libc = "msvcrt"; # This distinguishes the mingw (non posix) toolchain
+      platform = {};
+  };
+in {
+  crossMingwW64 = mapTestOnCross crossSystem {
+    coreutils.hostDrv = nativePlatforms;
+    boehmgc.hostDrv = nativePlatforms;
+    gmp.hostDrv = nativePlatforms;
+    guile_1_8.hostDrv = nativePlatforms;
+    libffi.hostDrv = nativePlatforms;
+    libtool.hostDrv = nativePlatforms;
+    libunistring.hostDrv = nativePlatforms;
+    windows.wxMSW.hostDrv = nativePlatforms;
+  };
+}) // (
+
 /* GNU aka. GNU/Hurd.  */
 let
   crossSystem = {