[HTML5] Bump initial memory for Web editor
More memory is needed because the editor became bigger with the addition
of class reference translations.
(cherry picked from commit 1446cfd13d
)
This commit is contained in:
parent
89076410de
commit
11d1b0387e
@ -90,9 +90,9 @@ def configure(env):
|
|||||||
if not env["threads_enabled"]:
|
if not env["threads_enabled"]:
|
||||||
print("Threads must be enabled to build the editor. Please add the 'threads_enabled=yes' option")
|
print("Threads must be enabled to build the editor. Please add the 'threads_enabled=yes' option")
|
||||||
sys.exit(255)
|
sys.exit(255)
|
||||||
if env["initial_memory"] < 32:
|
if env["initial_memory"] < 64:
|
||||||
print("Editor build requires at least 32MiB of initial memory. Forcing it.")
|
print("Editor build requires at least 64MiB of initial memory. Forcing it.")
|
||||||
env["initial_memory"] = 32
|
env["initial_memory"] = 64
|
||||||
else:
|
else:
|
||||||
# Disable exceptions and rtti on non-tools (template) builds
|
# Disable exceptions and rtti on non-tools (template) builds
|
||||||
# These flags help keep the file size down.
|
# These flags help keep the file size down.
|
||||||
|
Loading…
Reference in New Issue
Block a user