summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-01-05 13:14:24 +0000
committerMoonchild <moonchild@palemoon.org>2021-01-05 13:14:24 +0000
commit5cc3547202966e9566d585f832992bd25157c832 (patch)
treeffc19715e8751bd6dedfd602f853fa6a84aabc8b
parent143b0fff0bbea33499d4a1f08036431dde2bc76b (diff)
downloadbasilisk-5cc3547202966e9566d585f832992bd25157c832.tar.gz
Stop restricting the initial heap size.
-rw-r--r--basilisk/app/moz.build11
1 files changed, 0 insertions, 11 deletions
diff --git a/basilisk/app/moz.build b/basilisk/app/moz.build
index d888a96..7a74aae 100644
--- a/basilisk/app/moz.build
+++ b/basilisk/app/moz.build
@@ -44,17 +44,6 @@ if CONFIG['OS_ARCH'] == 'WINNT':
RCINCLUDE = 'splash.rc'
DEFINES['MOZ_PHOENIX'] = True
-# Control the default heap size.
-# This is the heap returned by GetProcessHeap().
-# As we use the CRT heap, the default size is too large and wastes VM.
-#
-# The default heap size is 1MB on Win32.
-# The heap will grow if need be.
-#
-# Set it to 256k. See bug 127069.
-if CONFIG['OS_ARCH'] == 'WINNT' and not CONFIG['GNU_CC']:
- LDFLAGS += ['/HEAP:0x40000']
-
DISABLE_STL_WRAPPING = True
if CONFIG['MOZ_LINKER']: