virtualx-engine/modules/denoise
Rémi Verschelde 55550da68b
SCons: Disable C++ exception handling
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.
2023-08-16 10:34:10 +02:00
..
config.py Add support for PowerPC family 2021-11-15 17:22:46 +01:00
denoise_wrapper.cpp One Copyright Update to rule them all 2023-01-10 15:26:54 +01:00
denoise_wrapper.h One Copyright Update to rule them all 2023-01-10 15:26:54 +01:00
lightmap_denoiser.cpp One Copyright Update to rule them all 2023-01-10 15:26:54 +01:00
lightmap_denoiser.h One Copyright Update to rule them all 2023-01-10 15:26:54 +01:00
register_types.cpp One Copyright Update to rule them all 2023-01-10 15:26:54 +01:00
register_types.h One Copyright Update to rule them all 2023-01-10 15:26:54 +01:00
resource_to_cpp.py Add OpenImageDenoise thirdparty library 2021-01-14 18:02:07 +01:00
SCsub SCons: Disable C++ exception handling 2023-08-16 10:34:10 +02:00