From: Simon Marlow Date: Fri, 19 Dec 2008 11:22:11 +0000 (+0000) Subject: bump GHC's max stack size to 512M X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=27fcc50d92b4490fa638950f813d8a3ba530e6a1;p=ghc-hetmet.git bump GHC's max stack size to 512M To accomodate compiling very long static lists (#2002) --- diff --git a/compiler/parser/hschooks.c b/compiler/parser/hschooks.c index c0d0132..7b091e8 100644 --- a/compiler/parser/hschooks.c +++ b/compiler/parser/hschooks.c @@ -19,7 +19,7 @@ void defaultsHook (void) { RtsFlags.GcFlags.heapSizeSuggestion = 6*1024*1024 / BLOCK_SIZE; - RtsFlags.GcFlags.maxStkSize = 64*1024*1024 / sizeof(W_); + RtsFlags.GcFlags.maxStkSize = 512*1024*1024 / sizeof(W_); RtsFlags.GcFlags.giveStats = COLLECT_GC_STATS; RtsFlags.GcFlags.statsFile = stderr; }