Skip to content

Commit 637958d

Browse files
Do not disable parallel GC (#1190)
Parallel GC is a win in my machine (16 cores). Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent 5433723 commit 637958d

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

ghcide/ghcide.cabal

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,8 @@ executable ghcide
253253
-- allow user RTS overrides
254254
-rtsopts
255255
-- disable idle GC
256-
-- disable parallel GC
257256
-- increase nursery size
258-
"-with-rtsopts=-I0 -qg -A128M"
257+
"-with-rtsopts=-I0 -A128M"
259258
main-is: Main.hs
260259
build-depends:
261260
aeson,

haskell-language-server.cabal

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,8 @@ executable haskell-language-server
294294
-- allow user RTS overrides
295295
-rtsopts
296296
-- disable idle GC
297-
-- disable parallel GC
298297
-- increase nursery size
299-
"-with-rtsopts=-I0 -qg -A128M"
298+
"-with-rtsopts=-I0 -A128M"
300299
if flag(pedantic)
301300
ghc-options: -Werror
302301

@@ -341,9 +340,8 @@ executable haskell-language-server-wrapper
341340
-- allow user RTS overrides
342341
-rtsopts
343342
-- disable idle GC
344-
-- disable parallel GC
345343
-- increase nursery size
346-
"-with-rtsopts=-I0 -qg -A128M"
344+
"-with-rtsopts=-I0 -A128M"
347345
if flag(pedantic)
348346
ghc-options: -Werror
349347

@@ -468,7 +466,3 @@ test-suite wrapper-test
468466
hs-source-dirs: test/wrapper
469467
main-is: Main.hs
470468
ghc-options: -Wall
471-
472-
473-
474-

0 commit comments

Comments
 (0)