Skip to content

Commit

Permalink
Disable GHCi libraries by default on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bgamari authored and mergify-bot committed Apr 6, 2022
1 parent 020a7f8 commit cabd857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cabal/src/Distribution/Simple/Setup.hs
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@ defaultConfigFlags progDb = emptyConfigFlags {
configVerbosity = Flag normal,
configUserInstall = Flag False, --TODO: reverse this
#if defined(mingw32_HOST_OS)
-- See #1589.
configGHCiLib = Flag True,
-- See #8062 and GHC #21019.
configGHCiLib = Flag False,
#else
configGHCiLib = NoFlag,
#endif
Expand Down

0 comments on commit cabd857

Please sign in to comment.