Tag: SINGLE TRANSLATION UNIT

  • Faster Compiling: Visual Studio Unity (Jumbo) Builds

    Unity/Jumbo builds are a way of speeding up C/C++ compilation by compiling multiple c/cpp files as a single object file. Speed improvements can come from not having to re-parse and compile shared headers. Even in projects that use pre-compiled headers, there is an overhead of processing the pre-compiled header which can be avoided with Unity/Jumbo…