release-cross: Add `crossGNU' job.

svn path=/nixpkgs/trunk/; revision=21753
This commit is contained in:
Ludovic Courtès 2010-05-12 15:46:55 +00:00
parent 7e08174782
commit e4b15a9cee

View file

@ -136,4 +136,21 @@ in {
windows.wxMSW.hostDrv = nativePlatforms;
gccCrossStageFinal = nativePlatforms;
};
}) // (
/* GNU aka. GNU/Hurd. */
let
crossSystem = {
config = "i586-pc-gnu";
bigEndian = false;
arch = "i586";
float = "hard";
withTLS = true;
platform = pkgs.platforms.pc;
libc = "glibc";
};
in {
crossGNU = mapTestOnCross crossSystem {
gccCrossStageFinal = nativePlatforms;
};
})