[JS, Android] Re-add "no-exceptions" for export templates builds with ICU.
This commit is contained in:
parent
1616055b3b
commit
7e557bbec6
2 changed files with 5 additions and 2 deletions
|
@ -258,8 +258,10 @@ def configure(env):
|
|||
env.Append(CPPFLAGS=["-isystem", env["ANDROID_NDK_ROOT"] + "/sources/cxx-stl/llvm-libc++abi/include"])
|
||||
|
||||
# Disable exceptions and rtti on non-tools (template) builds
|
||||
if env["tools"] or env["builtin_icu"]:
|
||||
if env["tools"]:
|
||||
env.Append(CXXFLAGS=["-frtti"])
|
||||
elif env["builtin_icu"]:
|
||||
env.Append(CXXFLAGS=["-frtti", "-fno-exceptions"])
|
||||
else:
|
||||
env.Append(CXXFLAGS=["-fno-rtti", "-fno-exceptions"])
|
||||
# Don't use dynamic_cast, necessary with no-rtti.
|
||||
|
|
|
@ -95,8 +95,9 @@ def configure(env):
|
|||
if env["initial_memory"] < 64:
|
||||
print("Editor build requires at least 64MiB of initial memory. Forcing it.")
|
||||
env["initial_memory"] = 64
|
||||
elif env["builtin_icu"]:
|
||||
env.Append(CCFLAGS=["-frtti"])
|
||||
elif env["builtin_icu"]:
|
||||
env.Append(CCFLAGS=["-fno-exceptions", "-frtti"])
|
||||
else:
|
||||
# Disable exceptions and rtti on non-tools (template) builds
|
||||
# These flags help keep the file size down.
|
||||
|
|
Loading…
Reference in a new issue