Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

GC tweaks #329

Merged
merged 1 commit into from
Jan 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion ghcide.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,18 @@ executable ghcide
buildable: False
default-language: Haskell2010
hs-source-dirs: exe
ghc-options: -threaded -Wall -Wno-name-shadowing
ghc-options:
-threaded
-Wall
-Wno-name-shadowing
-- allow user RTS overrides
-rtsopts
-- disable idle GC
-with-rtsopts=-I0
-- disable parallel GC
-with-rtsopts=-qg
-- increase nursery size
-with-rtsopts=-A128M
main-is: Main.hs
build-depends:
hslogger,
Expand Down