Skip to content
Snippets Groups Projects
Commit 4404f20e authored by Simon Marlow's avatar Simon Marlow
Browse files

bump GHC's maximum stack size to 64Mb (see #2002)

parent 2412b0b3
No related merge requests found
......@@ -19,7 +19,7 @@ void
defaultsHook (void)
{
RtsFlags.GcFlags.heapSizeSuggestion = 6*1024*1024 / BLOCK_SIZE;
RtsFlags.GcFlags.maxStkSize = 8*1024*1024 / sizeof(W_);
RtsFlags.GcFlags.maxStkSize = 64*1024*1024 / sizeof(W_);
RtsFlags.GcFlags.giveStats = COLLECT_GC_STATS;
RtsFlags.GcFlags.statsFile = stderr;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment