Merge pull request #84328 from akien-mga/4.1-re-disable-exceptions
[4.1] SCons: Re-disable exceptions for Android, iOS, and Web
This commit is contained in:
commit
2d3b2abcf6
@ -68,6 +68,7 @@ def get_flags():
|
|||||||
return [
|
return [
|
||||||
("arch", "arm64"), # Default for convenience.
|
("arch", "arm64"), # Default for convenience.
|
||||||
("target", "template_debug"),
|
("target", "template_debug"),
|
||||||
|
("disable_exceptions", True), # Reduces size.
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -49,6 +49,7 @@ def get_flags():
|
|||||||
("arch", "arm64"), # Default for convenience.
|
("arch", "arm64"), # Default for convenience.
|
||||||
("target", "template_debug"),
|
("target", "template_debug"),
|
||||||
("use_volk", False),
|
("use_volk", False),
|
||||||
|
("disable_exceptions", True), # Reduces size.
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -69,6 +69,7 @@ def get_flags():
|
|||||||
# 100 KiB over -Os, which does not justify the negative impact on
|
# 100 KiB over -Os, which does not justify the negative impact on
|
||||||
# run-time performance.
|
# run-time performance.
|
||||||
("optimize", "size"),
|
("optimize", "size"),
|
||||||
|
("disable_exceptions", True), # Reduces size.
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user