Build ghci/ghc with internal interpreter (#1520)

Fixes #1512
This commit is contained in:
Hamish Mackenzie 2022-06-22 16:00:58 +12:00 committed by GitHub
parent 473b0b8509
commit 2a89c68994
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,4 +112,11 @@ in {
packages.closed.components.tests.readme.build-tools = [
config.hsPkgs.buildPackages.markdown-unlit
];
# Build ghci and ghc with internal interpreter support to make the
# `reinstallableLibGhc` build more like the boot version.
# See https://github.com/input-output-hk/haskell.nix/issues/1512
packages.ghc.flags.ghci = true;
packages.ghci.flags.ghci = true;
packages.ghci.flags.internal-interpreter = true;
}