We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a44822a commit 22a3da9Copy full SHA for 22a3da9
compiler/ghc/default.nix
@@ -331,8 +331,10 @@ let
331
# iPhones/iPads/... won't understand the compiled code, as the compiler will emit LDSETALH
332
# + lib.optionalString (targetPlatform.???) "'*.rts.ghc.c.opts += -optc-mcpu=apple-a7 -optc-march=armv8-a+norcpc'"
333
# For GHC versions in the 9.x range that don't support the +native_bignum flavour transformer yet
334
- + lib.optionalString ((enableNativeBignum && !hadrianHasNativeBignumFlavour))
+ + lib.optionalString (enableNativeBignum && !hadrianHasNativeBignumFlavour)
335
" --bignum=native"
336
+ # Tell hadrian to hash the unit-ids
337
+ + " --hash-unit-ids"
338
;
339
340
# When installation is done by copying the stage1 output the directory layout
0 commit comments