Skip to content

Commit

Permalink
Merge pull request #42581 from dtzWill/fix/ghc-84-musl
Browse files Browse the repository at this point in the history
ghc-8.4.3: minor fixes for cross-musl, same as used with 8.2.2
  • Loading branch information
peti committed Jun 25, 2018
2 parents 656dc51 + 2052323 commit 92a047a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/compilers/ghc/8.4.3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ let
'' + stdenv.lib.optionalString enableIntegerSimple ''
INTEGER_LIBRARY = integer-simple
'' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
Stage1Only = YES
Stage1Only = ${if targetPlatform.system == hostPlatform.system then "NO" else "YES"}
CrossCompilePrefix = ${targetPrefix}
HADDOCK_DOCS = NO
BUILD_SPHINX_HTML = NO
BUILD_SPHINX_PDF = NO
Expand Down

0 comments on commit 92a047a

Please sign in to comment.