mirror of
https://github.com/godotengine/godot
synced 2024-11-02 10:25:48 +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.
22 lines
732 B
Python
22 lines
732 B
Python
#!/usr/bin/python
|
|
|
|
Import("env")
|
|
|
|
env.tests_sources = []
|
|
|
|
env_tests = env.Clone()
|
|
|
|
# We must disable the THREAD_LOCAL entirely in doctest to prevent crashes on debugging
|
|
# Since we link with /MT thread_local is always expired when the header is used
|
|
# So the debugger crashes the engine and it causes weird errors
|
|
# Explained in https://github.com/onqtam/doctest/issues/401
|
|
if env_tests["platform"] == "windows":
|
|
env_tests.Append(CPPDEFINES=[("DOCTEST_THREAD_LOCAL", "")])
|
|
|
|
if env["disable_exceptions"]:
|
|
env_tests.Append(CPPDEFINES=["DOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS"])
|
|
|
|
env_tests.add_source_files(env.tests_sources, "*.cpp")
|
|
|
|
lib = env_tests.add_library("tests", env.tests_sources)
|
|
env.Prepend(LIBS=[lib])
|