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 4c2e5f8 commit ef8b4d9Copy full SHA for ef8b4d9
compiler/ghc/default.nix
@@ -610,7 +610,10 @@ haskell-nix.haskellLib.makeCompilerDeps (stdenv.mkDerivation (rec {
610
shift
611
exec ${buildPackages.nodejs-with-lto}/bin/node \
612
--disable-warning=ExperimentalWarning \
613
- --max-old-space-size=65536 \
+ ${
614
+ if builtins.compareVersions ghc-version "9.13" < 0
615
+ then "--experimental-wasm-type-reflection"
616
+ else "--max-old-space-size=65536"} \
617
--no-turbo-fast-api-calls \
618
--wasm-lazy-validation \
619
"$SCRIPT" \
0 commit comments