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:
commit
e18dac705a
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue