ghc-8.4.3: minor fixes for cross-musl, same as used with 8.2.2
Patches are no longer needed, seem to be more or less upstreamed.
This commit is contained in:
parent
656dc51666
commit
2052323a78
|
@ -49,7 +49,8 @@ let
|
||||||
'' + stdenv.lib.optionalString enableIntegerSimple ''
|
'' + stdenv.lib.optionalString enableIntegerSimple ''
|
||||||
INTEGER_LIBRARY = integer-simple
|
INTEGER_LIBRARY = integer-simple
|
||||||
'' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
|
'' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
|
||||||
Stage1Only = YES
|
Stage1Only = ${if targetPlatform.system == hostPlatform.system then "NO" else "YES"}
|
||||||
|
CrossCompilePrefix = ${targetPrefix}
|
||||||
HADDOCK_DOCS = NO
|
HADDOCK_DOCS = NO
|
||||||
BUILD_SPHINX_HTML = NO
|
BUILD_SPHINX_HTML = NO
|
||||||
BUILD_SPHINX_PDF = NO
|
BUILD_SPHINX_PDF = NO
|
||||||
|
|
Loading…
Reference in New Issue