Skip to content

Commit

Permalink
Use nonmoving gc in dev server
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Jun 5, 2021
1 parent c051f31 commit eaf0b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exe/IHP/IDE/DevServer.hs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ startGHCI = do
, "-package-env -" -- Do not load `~/.ghc/arch-os-version/environments/name file`, global packages interfere with our packages
, "-ignore-dot-ghci" -- Ignore the global ~/.ghc/ghci.conf That file sometimes causes trouble (specifically `:set +c +s`)
, "-ghci-script", ".ghci" -- Because the previous line ignored default ghci config file locations, we have to manual load our .ghci
, "+RTS", "-A512m", "-n4m", "-H512m", "-G3", "-qg", "-N"
, "+RTS", "-A512m", "-n4m", "-H512m", "--nonmoving-gc", "-N"
]
createManagedProcess (Process.proc "ghci" args)
{ Process.std_in = Process.CreatePipe
Expand Down

0 comments on commit eaf0b25

Please sign in to comment.