virtualx-engine/modules/fbx/fbx_parser
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
..
ByteSwapper.h
CREDITS
FBXAnimation.cpp
FBXBinaryTokenizer.cpp
FBXCommon.h
FBXDeformer.cpp
FBXDocument.cpp
FBXDocument.h
FBXDocumentUtil.cpp
FBXDocumentUtil.h
FBXImportSettings.h
FBXMaterial.cpp
FBXMeshGeometry.cpp
FBXMeshGeometry.h
FBXModel.cpp
FBXNodeAttribute.cpp
FBXParser.cpp
FBXParser.h
FBXParseTools.h
FBXPose.cpp
FBXProperties.cpp
FBXProperties.h
FBXTokenizer.cpp
FBXTokenizer.h
FBXUtil.cpp
FBXUtil.h
LICENSE