1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ghc-7.10.x: compile Setup.hs with -threaded to avoid hanging test suites

Closes https://github.com/NixOS/nixpkgs/issues/6259.
This commit is contained in:
Peter Simons 2015-02-13 15:51:40 +01:00
parent 4e82b03f29
commit 9db348d7f9
2 changed files with 1 additions and 8 deletions

View file

@ -62,10 +62,6 @@ self: super: {
# bos/attoparsec#92
attoparsec = dontCheck super.attoparsec;
# test suite hangs silently for at least 10 minutes
ChasingBottoms = dontCheck super.ChasingBottoms;
split = dontCheck super.split;
# Test suite fails with some (seemingly harmless) error.
# https://code.google.com/p/scrapyourboilerplate/issues/detail?id=24
syb = dontCheck super.syb;
@ -79,10 +75,6 @@ self: super: {
# Version 1.19.5 fails its test suite.
happy = dontCheck super.happy;
# Test suite hangs silently without consuming any CPU.
# https://github.com/ndmitchell/extra/issues/4
extra = dontCheck super.extra;
# Test suite fails in "/tokens_bytestring_unicode.g.bin".
alex = dontCheck super.alex;

View file

@ -88,6 +88,7 @@ let
setupCompileFlags = [
(optionalString (!coreSetup) "-${packageDbFlag}=$packageConfDir")
(optionalString (versionOlder "7.8" ghc.version) "-j$NIX_BUILD_CORES")
(optionalString (versionOlder "7.10" ghc.version) "-threaded") # https://github.com/haskell/cabal/issues/2398
];
isHaskellPkg = x: (x ? pname) && (x ? version) && (x ? env);