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:
Rémi Verschelde 2023-11-02 09:09:23 +01:00 committed by GitHub
commit 2d3b2abcf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -68,6 +68,7 @@ def get_flags():
return [
("arch", "arm64"), # Default for convenience.
("target", "template_debug"),
("disable_exceptions", True), # Reduces size.
]

View File

@ -49,6 +49,7 @@ def get_flags():
("arch", "arm64"), # Default for convenience.
("target", "template_debug"),
("use_volk", False),
("disable_exceptions", True), # Reduces size.
]

View File

@ -69,6 +69,7 @@ def get_flags():
# 100 KiB over -Os, which does not justify the negative impact on
# run-time performance.
("optimize", "size"),
("disable_exceptions", True), # Reduces size.
]