Merge pull request #50422 from Faless/js/4.x_memory_initial_32
[HTML5] Raise default initial memory to 32 MiB.
This commit is contained in:
commit
681b1bb306
1 changed files with 1 additions and 2 deletions
|
@ -29,7 +29,7 @@ def get_opts():
|
|||
from SCons.Variables import BoolVariable
|
||||
|
||||
return [
|
||||
("initial_memory", "Initial WASM memory (in MiB)", 16),
|
||||
("initial_memory", "Initial WASM memory (in MiB)", 32),
|
||||
BoolVariable("use_assertions", "Use Emscripten runtime assertions", False),
|
||||
BoolVariable("use_thinlto", "Use ThinLTO", False),
|
||||
BoolVariable("use_ubsan", "Use Emscripten undefined behavior sanitizer (UBSAN)", False),
|
||||
|
@ -130,7 +130,6 @@ def configure(env):
|
|||
env.Append(CCFLAGS=["-fsanitize=leak"])
|
||||
env.Append(LINKFLAGS=["-fsanitize=leak"])
|
||||
if env["use_safe_heap"]:
|
||||
env.Append(CCFLAGS=["-s", "SAFE_HEAP=1"])
|
||||
env.Append(LINKFLAGS=["-s", "SAFE_HEAP=1"])
|
||||
|
||||
# Closure compiler
|
||||
|
|
Loading…
Reference in a new issue