3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #21214 from NixOS/haskell-parallel-builds

Haskell generic builder: enable parallel builds for GHC 8.0.2
This commit is contained in:
Peter Simons 2016-12-16 22:27:41 +01:00 committed by GitHub
commit e18dac705a

View file

@ -114,6 +114,7 @@ let
(optionalString (isGhcjs || versionOlder "7" ghc.version) (enableFeature enableStaticLibraries "library-vanilla"))
(optionalString (isGhcjs || versionOlder "7.4" ghc.version) (enableFeature enableSharedExecutables "executable-dynamic"))
(optionalString (isGhcjs || versionOlder "7" ghc.version) (enableFeature doCheck "tests"))
(optionalString (versionOlder "8.0.1" ghc.version) "--ghc-option=-j$NIX_BUILD_CORES")
] ++ optionals isGhcjs [
"--with-hsc2hs=${nativeGhc}/bin/hsc2hs"
"--ghcjs"