This enables heaps larger than 128 GB on 64-bit targets.
* include/private/gc_priv.h [!MAX_HEAP_SECTS && LARGE_CONFIG]
(MAX_HEAP_SECTS): Increase value 10 times (from 8192 to 81920 if
64-bit target, from 768 to 7680 otherwise); remove comments.
#ifndef MAX_HEAP_SECTS
# ifdef LARGE_CONFIG
# if CPP_WORDSZ > 32
-# define MAX_HEAP_SECTS 8192 /* overflows at roughly 128 GB */
+# define MAX_HEAP_SECTS 81920
# else
-# define MAX_HEAP_SECTS 768 /* Separately added heap sections. */
+# define MAX_HEAP_SECTS 7680
# endif
# elif defined(SMALL_CONFIG) && !defined(USE_PROC_FOR_LIBRARIES)
# if defined(PARALLEL_MARK) && (defined(MSWIN32) || defined(CYGWIN32))