Skip to content

Commit

Permalink
Merge pull request godotengine#84328 from akien-mga/4.1-re-disable-ex…
Browse files Browse the repository at this point in the history
…ceptions

[4.1] SCons: Re-disable exceptions for Android, iOS, and Web
  • Loading branch information
akien-mga authored Nov 2, 2023
2 parents 65f5865 + 1e1d91d commit 2d3b2ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions platform/android/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def get_flags():
return [
("arch", "arm64"), # Default for convenience.
("target", "template_debug"),
("disable_exceptions", True), # Reduces size.
]


Expand Down
1 change: 1 addition & 0 deletions platform/ios/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def get_flags():
("arch", "arm64"), # Default for convenience.
("target", "template_debug"),
("use_volk", False),
("disable_exceptions", True), # Reduces size.
]


Expand Down
1 change: 1 addition & 0 deletions platform/web/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
]


Expand Down

0 comments on commit 2d3b2ab

Please sign in to comment.