mirror of
https://github.com/godotengine/godot
synced 2024-11-05 16:53:09 +00:00
3907e53ff6
Upon investigating the extremely slow MSVC build times in #80513, I noticed that while Godot policy is to never use exceptions, we weren't enforcing it with compiler flags, and thus still included exception handling code and stack unwinding. This is wasteful on multiple aspects: - Binary size: Around 20% binary size reduction with exceptions disabled for both MSVC and GCC binaries. - Compile time: * More than 50% build time reduction with MSVC. * 10% to 25% build time reduction with GCC + LTO. - Performance: Possibly, needs to be benchmarked. Since users may want to re-enable exceptions in their own thirdparty code or the libraries they compile with Godot, this behavior can be toggled with the `disable_exceptions` SCons option, which defaults to true. |
||
---|---|---|
.. | ||
config.py | ||
denoise_wrapper.cpp | ||
denoise_wrapper.h | ||
lightmap_denoiser.cpp | ||
lightmap_denoiser.h | ||
register_types.cpp | ||
register_types.h | ||
resource_to_cpp.py | ||
SCsub |