Skip to content

Commit

Permalink
Do not disable parallel GC (#1190)
Browse files Browse the repository at this point in the history
Parallel GC is a win in my machine (16 cores).

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
pepeiborra and mergify[bot] authored Jan 10, 2021
1 parent 5433723 commit 637958d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
3 changes: 1 addition & 2 deletions ghcide/ghcide.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,8 @@ executable ghcide
-- allow user RTS overrides
-rtsopts
-- disable idle GC
-- disable parallel GC
-- increase nursery size
"-with-rtsopts=-I0 -qg -A128M"
"-with-rtsopts=-I0 -A128M"
main-is: Main.hs
build-depends:
aeson,
Expand Down
10 changes: 2 additions & 8 deletions haskell-language-server.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,8 @@ executable haskell-language-server
-- allow user RTS overrides
-rtsopts
-- disable idle GC
-- disable parallel GC
-- increase nursery size
"-with-rtsopts=-I0 -qg -A128M"
"-with-rtsopts=-I0 -A128M"
if flag(pedantic)
ghc-options: -Werror

Expand Down Expand Up @@ -341,9 +340,8 @@ executable haskell-language-server-wrapper
-- allow user RTS overrides
-rtsopts
-- disable idle GC
-- disable parallel GC
-- increase nursery size
"-with-rtsopts=-I0 -qg -A128M"
"-with-rtsopts=-I0 -A128M"
if flag(pedantic)
ghc-options: -Werror

Expand Down Expand Up @@ -468,7 +466,3 @@ test-suite wrapper-test
hs-source-dirs: test/wrapper
main-is: Main.hs
ghc-options: -Wall




0 comments on commit 637958d

Please sign in to comment.