Page MenuHomeWildfire Games

Switch console to UTF8 strings
AbandonedPublic

Authored by wraitii on Nov 25 2020, 4:59 PM.

Details

Reviewers
Vulcan
Trac Tickets
#5860
Summary

SM68 changes how scripts are handled. Their UTF8 support is better, and their utf16 chars are less trivial to use. I've removed the overloaded eval and kept only the UTF8 one, which requires some straightforward updates in other code.

Test Plan

Test the console.

Unit TestsFailed

TimeTest
0 msJenkins > cxxtest_debug.xml::[failed-to-read]
Failed to read test report file E:\Jenkins\workspace\vs2015-differential\cxxtest_debug.xml org.dom4j.DocumentException: Error on line 435 of document : Content is not allowed in trailing section. at org.dom4j.io.SAXReader.read(SAXReader.java:511)
0 msJenkins > TestAllocators::Debug Build & Tests / test_da
0 msJenkins > TestAllocators::Release Build & Tests / test_da
0 msJenkins > TestAllocators::test_da
0 msJenkins > TestAllocators::test_da
View Full Test Results (1 Failed · 2,038 Passed)

Event Timeline

wraitii created this revision.Nov 25 2020, 4:59 PM
Owners added a subscriber: Restricted Owners Package.Nov 25 2020, 4:59 PM

Build failure - The Moirai have given mortals hearts that can endure.

builderr-debug-gcc7.txt
../../../source/tools/atlas/GameInterface/Handlers/MiscHandlers.cpp: In function 'void AtlasMessage::fJavaScript(AtlasMessage::mJavaScript*)':
../../../source/tools/atlas/GameInterface/Handlers/MiscHandlers.cpp:158:87: error: no matching function for call to 'ScriptInterface::LoadGlobalScript(const wchar_t [6], const wrapped_type)'
  g_GUI->GetActiveGUI()->GetScriptInterface()->LoadGlobalScript(L"Atlas", *msg->command);
                                                                                       ^
In file included from ../../../source/gui/GUIManager.h:25,
                 from ../../../source/tools/atlas/GameInterface/Handlers/MiscHandlers.cpp:27:
../../../source/scriptinterface/ScriptInterface.h:291:7: note: candidate: 'bool ScriptInterface::LoadGlobalScript(const VfsPath&, const wstring&) const'
  bool LoadGlobalScript(const VfsPath& filename, const std::wstring& code) const;
       ^~~~~~~~~~~~~~~~
../../../source/scriptinterface/ScriptInterface.h:291:7: note:   no known conversion for argument 2 from 'const wrapped_type' {aka 'const std::__cxx11::basic_string<char>'} to 'const wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'}
make[1]: *** [atlas.make:198: obj/atlas_Debug/MiscHandlers.o] Error 1
make: *** [Makefile:131: atlas] Error 2

Link to build: https://jenkins.wildfiregames.com/job/docker-differential/3772/display/redirect

Build failure - The Moirai have given mortals hearts that can endure.

Link to build: https://jenkins.wildfiregames.com/job/vs2015-differential/3219/display/redirect

wraitii updated this revision to Diff 14195.Nov 25 2020, 5:50 PM

Don't include the atlas change, doesn't work yet.

wraitii retitled this revision from Switch console & Atlas JS messages to UTF8 strings to Switch console to UTF8 strings.Nov 25 2020, 5:53 PM
wraitii edited the test plan for this revision. (Show Details)

Build failure - The Moirai have given mortals hearts that can endure.

builderr-debug-gcc7.txt
g++: internal compiler error: Segmentation fault signal terminated program cc1plus
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-8/README.Bugs> for instructions.
make[1]: *** [atlas.make:189: obj/atlas_Debug/GraphicsSetupHandlers.o] Error 4
make: *** [Makefile:131: atlas] Error 2

Link to build: https://jenkins.wildfiregames.com/job/docker-differential/3774/display/redirect

Build failure - The Moirai have given mortals hearts that can endure.

builderr-debug-macos.txt
error: PCH file built from a different branch ((clang-800.0.42.1)) than the compiler ((clang-1000.11.45.5))
1 error generated.
make[1]: *** [obj/network_Debug/NetClient.o] Error 1
make: *** [network] Error 2

Link to build: https://jenkins.wildfiregames.com/job/macos-differential/2116/display/redirect

wraitii requested review of this revision.Nov 25 2020, 6:29 PM

Build failure - The Moirai have given mortals hearts that can endure.

builderr-debug-gcc7.txt
g++: internal compiler error: Segmentation fault signal terminated program cc1plus
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-8/README.Bugs> for instructions.
make[1]: *** [atlas.make:189: obj/atlas_Debug/GraphicsSetupHandlers.o] Error 4
make: *** [Makefile:131: atlas] Error 2

Link to build: https://jenkins.wildfiregames.com/job/docker-differential/3779/display/redirect

wraitii updated this revision to Diff 14204.Nov 26 2020, 9:28 AM

Reupload to rerun CI

Build failure - The Moirai have given mortals hearts that can endure.

builderr-debug-gcc7.txt
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/gui/GUIManager.h:25,
                 from ../../../source/ps/Game.cpp:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp: In function 'void GUI_DisplayLoadProgress(int, const wchar_t*)':
../../../source/ps/GameSetup/GameSetup.cpp:191:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Value; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(JS::NumberValue(percent));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Rooted<JS::Value>&; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(valPendingTask);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/graphics/MapReader.h:27,
                 from ../../../source/ps/GameSetup/GameSetup.cpp:34:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CStrW}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
builderr-release-gcc7.txt
<command-line>: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-8/README.Bugs> for instructions.
make[1]: *** [network.make:145: obj/network_Release/NetClient.o] Error 1
make: *** [Makefile:77: network] Error 2

Link to build: https://jenkins.wildfiregames.com/job/docker-differential/3788/display/redirect

Successful build - Chance fights ever on the side of the prudent.

builderr-debug-macos.txt
In file included from ../../../source/network/NetHost.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetFileTransfer.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/NetClientTurnManager.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/NetClient.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/NetMessage.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetMessageSim.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/network/NetStats.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetServerTurnManager.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/NetServer.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetSession.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/network/StunClient.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/fsm.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/pch/network/precompiled.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/rlinterface/RLInterface.cpp:28:
In file included from ../../../source/ps/CLogger.h:28:
../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/pch/tinygettext/precompiled.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/iconv.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/third_party/tinygettext/src/dictionary.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/third_party/tinygettext/src/dictionary_manager.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/log.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/language.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/tinygettext/src/tinygettext.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/third_party/tinygettext/src/plural_forms.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/po_parser.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/unix_file_system.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lobby/Globals.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lobby/StanzaExtensions.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lobby/XmppClient.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lobby/scripting/GlooxScriptConversions.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lobby/scripting/JSInterface_Lobby.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/i18n/L10n.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/pch/lobby/precompiled.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/third_party/encryption/pkcs5_pbkdf2.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/glooxwrapper/precompiled.cpp:1:
In file included from ../../../source/pch/glooxwrapper/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lobby/glooxwrapper/glooxwrapper.cpp:1:
In file included from ../../../source/pch/glooxwrapper/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/pch/simulation2/precompiled.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpCinemaManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/Simulation2.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/simulation2/components/CCmpAIManager.cpp:162:4: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
                        argv.append(settings.get());
                        ^~~~~~~~~~~ ~~~~~~~~~~~~~~
../../../source/simulation2/components/CCmpAIManager.cpp:461:3: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
                argv.append(settings);
                ^~~~~~~~~~~ ~~~~~~~~
In file included from ../../../source/simulation2/components/CCmpCommandQueue.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpAIManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpDecay.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpFootprint.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpMinimap.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpMotionBall.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpObstruction.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
5 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpObstructionManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpOwnership.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpOverlayRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpParticleManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpPosition.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpProjectileManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpRallyPointRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpRangeManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpRangeOverlayRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpSelectable.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpSoundManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpTemplateManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpTerritoryInfluence.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpTerrain.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpTerritoryManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpTest.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpUnitMotion.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpUnitRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpVision.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpWaterManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpAIInterface.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpVisualActor.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpAIManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpAttack.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpCinemaManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpCommandQueue.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpDecay.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpFogging.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpFootprint.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpGarrisonHolder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpGuiInterface.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpIdentity.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpMinimap.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpMirage.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpMotion.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpObstruction.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpObstructionManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpOverlayRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpOwnership.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpParticleManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpPlayerManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/simulation2/components/ICmpPlayer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpPosition.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpProjectileManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpRallyPoint.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpRallyPointRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpRangeManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpRangeOverlayRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpSelectable.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpSettlement.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpSound.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpSoundManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpTemplateManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpTerrain.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpTerritoryDecayManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpTerritoryInfluence.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpTerritoryManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/simulation2/components/ICmpTest.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpTurretHolder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpUnitMotion.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpUnitRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpUnknownScript.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpValueModificationManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpVision.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpVisibility.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpVisual.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/helpers/CinemaPath.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpWaterManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/Geometry.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/helpers/HierarchicalPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/PathGoal.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/Pathfinding.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/helpers/LongPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/Rasterize.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/Render.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/helpers/Selection.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/VertexPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/scripting/EngineScriptConversions.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/scripting/JSInterface_Simulation.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/scripting/MessageTypeConversions.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/scripting/ScriptComponent.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/serialization/DebugSerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/serialization/BinarySerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/serialization/HashSerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/serialization/IDeserializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/serialization/ISerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/serialization/StdSerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/serialization/StdDeserializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/system/CmpPtr.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/system/ComponentManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/system/DynamicSubscription.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/system/ComponentManagerSerialization.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/system/IComponent.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/system/LocalTurnManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
../../../source/simulation2/system/ReplayTurnManager.cpp:94:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(JS::NumberValue(turn));
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
../../../source/simulation2/system/ReplayTurnManager.cpp:98:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(hashVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~~
../../../source/simulation2/system/ReplayTurnManager.cpp:102:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(expectedHashVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
In file included from ../../../source/simulation2/system/ReplayTurnManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/system/SimContext.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/system/ParamNode.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
6 warnings generated.
In file included from ../../../source/simulation2/system/TurnManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/scriptinterface/precompiled.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/scriptinterface/ScriptExceptions.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/scriptinterface/ScriptContext.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/scriptinterface/ScriptConversions.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/scriptinterface/ScriptInterface.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/scriptinterface/ScriptStats.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/BoundingBoxOriented.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/BoundingBoxAligned.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/BoundingSphere.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/i18n/scripting/JSInterface_L10n.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/Fixed.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/Brush.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/MD5.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/Matrix3D.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/i18n/L10n.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/NUSpline.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/Noise.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/Plane.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/Quaternion.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/maths/Sqrt.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
35/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/Vector3D.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/engine/precompiled.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/scripting/JSInterface_Network.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/ps/ArchiveBuilder.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/CLogger.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/CStr.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/CConsole.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/CStrIntern.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Compress.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/CacheLoader.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/DllLoader.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Errors.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/FileIo.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/ConfigDB.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Filesystem.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
In file included from ../../../source/ps/GUID.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning:   return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: /Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
forward declaration of template entity is here
            static const char DIGITS[];
                              ^
                *--buffer_end = internal::Data::DIGITS[index + 1];/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit

                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/GameSetup/Atlas.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/GameSetup/CmdLineArgs.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/GameSetup/Config.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Game.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/GameSetup/Paths.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/GameSetup/HWDetect.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Globals.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Joystick.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Hotkey.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/ps/GameSetup/GameSetup.cpp:191:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(JS::NumberValue(percent));
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(valPendingTask);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
In file included from ../../../source/ps/KeyName.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Loader.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/GameSetup/GameSetup.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Mod.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/ModInstaller.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
5 warnings generated.
In file included from ../../../source/ps/Profile.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/Profiler2.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/ModIo.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Profiler2GPU.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/ProfileViewer.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Pyrogenesis.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Shapes.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/ThreadUtil.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/TemplateLoader.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Replay.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/SavedGame.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/TouchInput.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/UserReport.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/VideoMode.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Util.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/VisualReplay.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/XML/RelaxNG.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/XML/XMLWriter.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/World.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/XML/XeroXMB.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/XML/XeroXMB.cpp:20:
In file included from ../../../source/ps/XML/Xeromyces.h:33:
../../../source/ps/XML/XeroXMB.h:214:15: warning: private field 'm_Pointer' is not used [-Wunused-private-field]
                const char* m_Pointer;
                            ^
../../../source/ps/XML/XeroXMB.h:283:15: warning: private field 'm_Pointer' is not used [-Wunused-private-field]
                const char* m_Pointer;
                            ^
5 warnings generated.
In file included from ../../../source/ps/XML/Xeromyces.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_Console.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_ConfigDB.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_Debug.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_Game.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_Hotkey.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_Main.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_Mod.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_ModIo.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_UserReport.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_SavedGame.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_VFS.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/soundmanager/SoundManager.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/soundmanager/data/OggData.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warningsIn file included from  generated.
../../../source/ps/scripting/JSInterface_VisualReplay.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/soundmanager/data/SoundData.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/soundmanager/data/ogg.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/soundmanager/items/CBufferItem.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/soundmanager/items/CSoundBase.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/soundmanager/items/CSoundItem.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/soundmanager/items/CStreamItem.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.cpp:145:7: warning: '_POSIX_C_SOURCE' is not defined, evaluates to 0 [-Wundef]
#if ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE) || (defined(__ANDROID__) && __ANDROID__)
      ^
../../../source/third_party/fmt/format.cpp:145:37: warning: '_XOPEN_SOURCE' is not defined, evaluates to 0 [-Wundef]
#if ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE) || (defined(__ANDROID__) && __ANDROID__)
                                    ^
3 warnings generated.
In file included from ../../../source/soundmanager/scripting/JSInterface_Sound.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
2 warnings generated.
In file included from ../../../source/soundmanager/scripting/SoundGroup.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
3 warnings generated.
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/Camera.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ColladaManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/CinemaManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/Color.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/CameraController.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/Decal.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Font.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/FontManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/FontMetrics.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/Frustum.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/HFTracer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ICameraController.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/HeightMipmap.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/LightEnv.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/GameView.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/MapIO.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/LOSTexture.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/MapGenerator.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Material.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/MapWriter.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/MaterialManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/MeshManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/MapReader.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ModelAbstract.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/MiniPatch.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ModelDef.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Model.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ObjectBase.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/Overlay.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ObjectEntry.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/ObjectManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/ParticleEmitter.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ParticleManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ParticleEmitterType.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/PreprocessorWrapper.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Patch.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ShaderDefines.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ShaderManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/graphics/ShaderProgram.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ShaderProgramFFP.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ShaderTechnique.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/SkeletonAnimDef.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/SmoothedValue.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/graphics/SkeletonAnimManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/Terrain.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/TerrainProperties.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/TerrainTextureEntry.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/TerritoryBoundary.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/TerrainTextureManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/TerritoryTexture.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/TextRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/TextureConverter.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/TextureManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Unit.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/UnitAnimation.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/graphics/precompiled.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/AlphaMapCalculator.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/scripting/JSInterface_GameView.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/UnitManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/HWLightingModelRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/MikktspaceWrap.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/InstancingModelRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/DecalRData.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/ModelRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/ParticleRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/OverlayRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/PatchRData.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/PostprocManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/RenderModifiers.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/RenderingOptions.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/Scene.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/Renderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/ShadowMap.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/SilhouetteRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/SkyManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/TerrainOverlay.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/TerrainRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/TexturedLineRData.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/TimeManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/VertexArray.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/VertexBufferManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/VertexBuffer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/mikktspace/mikktspace.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/mikktspace/weldmesh.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/scripting/JSInterface_Renderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/WaterManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/third_party/ogre3d_preprocessor/OgreGLSLPreprocessor.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/atlas/precompiled.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/CommandProc.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Brushes.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/BrushHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/ActorViewer.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/CameraCtrlHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/GameLoop.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/CommandHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/CinemaHandler.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/ElevationHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/EnvironmentHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/GraphicsSetupHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/MessageHandler.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/MapHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/PlayerHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/MiscHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/ObjectHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/TerrainHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/InputProcessor.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/MessagePasserImpl.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Misc.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/SimState.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Register.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/View.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/CGUISprite.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/CGUIScrollBarVertical.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/CGUISetting.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/GUIMatrix.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/gui/GUIManager.cpp:258:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(argVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~
In file included from ../../../source/gui/GUIManager.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/CGUIText.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/CGUI.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
4 warnings generated.
In file included from ../../../source/gui/GUIObjectTypes.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/GUIStringConversions.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/GUIRenderer.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/GUITooltip.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/IGUIScrollBar.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectBases/IGUIButtonBehavior.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectBases/IGUIScrollBarOwner.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectBases/IGUIObject.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectBases/IGUITextOwner.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CButton.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CChart.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/CCheckBox.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CDropDown.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/CImage.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CHotkeyPicker.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CInput.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CList.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/gui/ObjectTypes/CMiniMap.cpp:254:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(coords);
        ^~~~~~~~~~~~~~~~ ~~~~~~
../../../source/gui/ObjectTypes/CMiniMap.cpp:255:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(buttonJs);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CMiniMap.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/COList.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/CProgressBar.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/CRadioButton.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
5 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CSlider.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/CTooltip.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/CText.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/Scripting/GuiScriptConversions.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/Scripting/JSInterface_GUISize.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/Scripting/JSInterface_CText.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/Scripting/JSInterface_GUIManager.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/Scripting/ScriptFunctions.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/Scripting/JSInterface_IGUIObject.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/SettingTypes/CGUISize.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/SettingTypes/CGUIColor.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/gui/precompiled.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/SettingTypes/CGUIString.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/i18n/L10n.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
../../../source/lib/sysdep/arch/amd64/amd64.cpp:70:9: warning: 'OSAtomicAdd64Barrier' is deprecated: first deprecated in macOS 10.12 - Use std::atomic_fetch_add() from <atomic> instead [-Wdeprecated-declarations]
        return OSAtomicAdd64Barrier(increment, (volatile int64_t*)location);
               ^
/usr/include/libkern/OSAtomicDeprecated.h:247:9: note: 'OSAtomicAdd64Barrier' has been explicitly marked deprecated here
int64_t OSAtomicAdd64Barrier( int64_t __theAmount,
        ^
../../../source/lib/sysdep/arch/amd64/amd64.cpp:76:9: warning: 'OSAtomicCompareAndSwapPtrBarrier' is deprecated: first deprecated in macOS 10.12 - Use std::atomic_compare_exchange_strong() from <atomic> instead [-Wdeprecated-declarations]
        return OSAtomicCompareAndSwapPtrBarrier((void*)expected, (void*)newValue, (void* volatile*)location);
               ^
/usr/include/libkern/OSAtomicDeprecated.h:547:6: note: 'OSAtomicCompareAndSwapPtrBarrier' has been explicitly marked deprecated here
bool    OSAtomicCompareAndSwapPtrBarrier( void *__oldValue, void *__newValue, void * volatile *__theValue );
        ^
../../../source/lib/sysdep/arch/amd64/amd64.cpp:81:9: warning: 'OSAtomicCompareAndSwap64Barrier' is deprecated: first deprecated in macOS 10.12 - Use std::atomic_compare_exchange_strong() from <atomic> instead [-Wdeprecated-declarations]
        return OSAtomicCompareAndSwap64Barrier(expected, newValue, location);
               ^
/usr/include/libkern/OSAtomicDeprecated.h:645:9: note: 'OSAtomicCompareAndSwap64Barrier' has been explicitly marked deprecated here
bool    OSAtomicCompareAndSwap64Barrier( int64_t __oldValue, int64_t __newValue,
        ^
3 warnings generated.
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
In file included from ../../../source/main.cpp:47:
In file included from ../../../source/ps/CLogger.h:28:
../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Security.framework/Security.tbd and library file /System/Library/Frameworks//Security.framework/Security are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenAL.framework/OpenAL.tbd and library file /System/Library/Frameworks//OpenAL.framework/OpenAL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
In file included from ../../../source/tools/atlas/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AGL.framework/AGL.tbd and library file /System/Library/Frameworks//AGL.framework/AGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxStringToStringHashMap_wxImplementation_HashTable::clear()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxStringToStringHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxStringToNumHashMap_wxImplementation_HashTable::clear()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxStringToNumHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxCompositeWindow<wxSpinCtrlBase>::wxCompositeWindow()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxCompositeWindow<wxSpinCtrlBase>::OnWindowCreate(wxWindowCreateEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
In file included from ../../../source/graphics/tests/test_Color.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_MapGenerator.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_Camera.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_LOSTexture.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/tests/test_MeshManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_ShaderManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_Terrain.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_TextureConverter.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/tests/test_TextureManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/tests/test_GuiManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/allocators/tests/test_allocators.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/tests/test_ParseString.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/allocators/tests/test_headerless.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/file/common/tests/test_trace.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/file/vfs/tests/test_vfs_tree.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
In file included from ../../../source/lib/file/vfs/tests/test_vfs_util.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/posix/tests/test_posix.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/res/graphics/tests/test_tex.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/sysdep/tests/test_rtl.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/sysdep/tests/test_sysdep.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/tests/test_adts.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_base32.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_bits.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/tests/test_byte_order.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/tests/test_fnv_hash.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_cache_adt.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/tests/test_lib.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_path.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/tests/test_path_util.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_rand.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_regex.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/tests/test_secure_crt.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/tests/test_wchar.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_Bound.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_BoundingSphere.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/tests/test_Brush.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/tests/test_Fixed.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_FixedVector2D.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_FixedVector3D.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/tests/test_MD5.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/tests/test_Matrix3d.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_Sqrt.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/tests/test_NetMessage.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/tests/test_Net.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/pch/test/precompiled.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/GameSetup/tests/test_CmdLineArgs.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/XML/tests/test_RelaxNG.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/XML/tests/test_XMLWriter.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/XML/tests/test_XeroXMB.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/XML/tests/test_Xeromyces.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/stub_impl_hack.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/test_CColor.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/tests/test_CLogger.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/tests/test_CStr.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/test_fmt.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/test_ModIo.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/tests/test_test.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/scriptinterface/tests/test_ScriptConversions.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/scriptinterface/tests/test_ScriptInterface.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_CinemaManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_CommandQueue.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_ObstructionManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_HierPathfinder.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_Pathfinder.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_Position.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_RangeManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_TerritoryManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_scripts.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/tests/test_CmpTemplateManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/tests/test_EntityMap.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/tests/test_ComponentManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/tests/test_ParamNode.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/tests/test_SerializeTemplates.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/tests/test_Serializer.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/test_setup.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/tests/test_Simulation2.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/test_root.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/encryption/tests/test_pkcs5_pbkdf5.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/ogre3d_preprocessor/tests/test_Preprocessor.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/AtlasObject/tests/test_AtlasObjectXML.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Security.framework/Security.tbd and library file /System/Library/Frameworks//Security.framework/Security are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenAL.framework/OpenAL.tbd and library file /System/Library/Frameworks//OpenAL.framework/OpenAL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
builderr-release-macos.txt
In file included from ../../../source/network/NetHost.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetFileTransfer.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetClientTurnManager.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetClient.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/network/NetMessage.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetMessageSim.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/network/NetServer.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetServerTurnManager.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/NetSession.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/NetStats.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/network/StunClient.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/fsm.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/pch/network/precompiled.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork.a(precompiled.o) has no symbols
In file included from ../../../source/rlinterface/RLInterface.cpp:28:
In file included from ../../../source/ps/CLogger.h:28:
../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/pch/tinygettext/precompiled.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/iconv.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/dictionary.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/dictionary_manager.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/tinygettext/src/language.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/log.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/tinygettext/src/plural_forms.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/tinygettext.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/tinygettext/src/po_parser.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/tinygettext/src/unix_file_system.cpp:1:
In file included from ../../../source/pch/tinygettext/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext.a(tinygettext.o) has no symbols
In file included from ../../../source/lobby/Globals.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lobby/StanzaExtensions.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lobby/XmppClient.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/i18n/L10n.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lobby/scripting/GlooxScriptConversions.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lobby/scripting/JSInterface_Lobby.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/pch/lobby/precompiled.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/encryption/pkcs5_pbkdf2.cpp:1:
In file included from ../../../source/pch/lobby/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby.a(precompiled.o) has no symbols
In file included from ../../../source/pch/glooxwrapper/precompiled.cpp:1:
In file included from ../../../source/pch/glooxwrapper/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lobby/glooxwrapper/glooxwrapper.cpp:1:
In file included from ../../../source/pch/glooxwrapper/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper.a(precompiled.o) has no symbols
In file included from ../../../source/pch/simulation2/precompiled.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/simulation2/components/CCmpAIManager.cpp:162:4: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
                        argv.append(settings.get());
                        ^~~~~~~~~~~ ~~~~~~~~~~~~~~
../../../source/simulation2/components/CCmpAIManager.cpp:461:3: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
                argv.append(settings);
                ^~~~~~~~~~~ ~~~~~~~~
In file included from ../../../source/simulation2/components/CCmpCinemaManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/Simulation2.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpAIManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpCommandQueue.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpDecay.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpFootprint.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpMinimap.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpMotionBall.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpObstruction.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpObstructionManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpOverlayRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
5 warnings generated.
In file included from ../../../source/simulation2/components/CCmpOwnership.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpParticleManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpPosition.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpProjectileManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpRallyPointRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpRangeManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpRangeOverlayRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpSelectable.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpSoundManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpTemplateManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpTerrain.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpTerritoryInfluence.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpTest.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpTerritoryManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpUnitMotion.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpVision.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpUnitRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/CCmpVisualActor.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpAIInterface.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/CCmpWaterManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpAIManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpAttack.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpCinemaManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpCommandQueue.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpDecay.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpFogging.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpFootprint.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpGarrisonHolder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpGuiInterface.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpIdentity.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpMinimap.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpMirage.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpMotion.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpObstruction.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpObstructionManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpOverlayRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpOwnership.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpParticleManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpPlayerManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpPlayer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpPosition.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpProjectileManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpRallyPoint.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpRallyPointRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpRangeManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpRangeOverlayRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpSettlement.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/simulation2/components/ICmpSelectable.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpSound.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpSoundManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/simulation2/components/ICmpTemplateManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpTerrain.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpTerritoryInfluence.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpTerritoryDecayManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpTerritoryManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpTest.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpTurretHolder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpUnitRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpUnitMotion.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpUnknownScript.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpValueModificationManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpVisibility.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/ICmpVision.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/ICmpVisual.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
3/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/helpers/CinemaPath.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/Geometry.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/simulation2/components/ICmpWaterManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/helpers/PathGoal.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/HierarchicalPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/Pathfinding.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/LongPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/helpers/Rasterize.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/helpers/Render.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/helpers/Selection.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/helpers/VertexPathfinder.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/scripting/EngineScriptConversions.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/scripting/JSInterface_Simulation.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/scripting/MessageTypeConversions.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/scripting/ScriptComponent.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/serialization/DebugSerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/serialization/HashSerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/simulation2/serialization/BinarySerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/serialization/IDeserializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/serialization/ISerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/serialization/StdDeserializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/serialization/StdSerializer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/system/CmpPtr.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/system/ComponentManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/system/DynamicSubscription.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/simulation2/system/ComponentManagerSerialization.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/system/IComponent.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/system/LocalTurnManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/system/ParamNode.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/simulation2/system/ReplayTurnManager.cpp:94:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(JS::NumberValue(turn));
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
../../../source/simulation2/system/ReplayTurnManager.cpp:98:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(hashVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~~
../../../source/simulation2/system/ReplayTurnManager.cpp:102:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(expectedHashVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
In file included from ../../../source/simulation2/system/SimContext.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/system/ReplayTurnManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/system/TurnManager.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
6 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2.a(precompiled.o) has no symbols
In file included from ../../../source/pch/scriptinterface/precompiled.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/scriptinterface/ScriptExceptions.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/scriptinterface/ScriptContext.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/scriptinterface/ScriptConversions.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/scriptinterface/ScriptInterface.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/scriptinterface/ScriptStats.cpp:1:
In file included from ../../../source/pch/scriptinterface/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface.a(precompiled.o) has no symbols
In file included from ../../../source/maths/BoundingBoxOriented.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/BoundingBoxAligned.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/BoundingSphere.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/i18n/scripting/JSInterface_L10n.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/Brush.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/i18n/L10n.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/Fixed.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/MD5.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/Matrix3D.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/NUSpline.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/Noise.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/Plane.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/Quaternion.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/Sqrt.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/Vector3D.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/engine/precompiled.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/network/scripting/JSInterface_Network.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/ArchiveBuilder.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/CLogger.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/CConsole.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/CStr.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/CStrIntern.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/CacheLoader.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Compress.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/DllLoader.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/Errors.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/FileIo.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/ConfigDB.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Filesystem.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/GUID.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/GameSetup/Atlas.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/GameSetup/CmdLineArgs.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/GameSetup/Config.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Game.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/GameSetup/Paths.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/GameSetup/HWDetect.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Hotkey.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Globals.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/ps/GameSetup/GameSetup.cpp:191:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(JS::NumberValue(percent));
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(valPendingTask);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
3 warnings generated.
In file included from ../../../source/ps/GameSetup/GameSetup.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Joystick.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/KeyName.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Loader.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Mod.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/ModInstaller.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Profile.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
5 warnings generated.
In file included from ../../../source/ps/ProfileViewer.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/Profiler2.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Profiler2GPU.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/ModIo.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/Pyrogenesis.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Replay.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/Shapes.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/SavedGame.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/ThreadUtil.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/TemplateLoader.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/TouchInput.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/UserReport.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/Util.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/VideoMode.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/VisualReplay.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/XML/RelaxNG.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/World.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/XML/XMLWriter.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/XML/XeroXMB.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/XML/XeroXMB.cpp:20:
In file included from ../../../source/ps/XML/Xeromyces.h:33:
../../../source/ps/XML/XeroXMB.h:214:15: warning: private field 'm_Pointer' is not used [-Wunused-private-field]
                const char* m_Pointer;
                            ^
../../../source/ps/XML/XeroXMB.h:283:15: warning: private field 'm_Pointer' is not used [-Wunused-private-field]
                const char* m_Pointer;
                            ^
In file included from ../../../source/ps/XML/Xeromyces.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
5 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_ConfigDB.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_Console.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_Debug.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_Game.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_Hotkey.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_Mod.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_Main.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/scripting/JSInterface_ModIo.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_UserReport.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_SavedGame.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/soundmanager/data/OggData.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/soundmanager/SoundManager.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_VisualReplay.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/scripting/JSInterface_VFS.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/soundmanager/data/SoundData.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/soundmanager/data/ogg.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/soundmanager/items/CBufferItem.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/soundmanager/items/CSoundBase.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/soundmanager/items/CSoundItem.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/soundmanager/items/CStreamItem.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
../../../source/third_party/fmt/format.cpp:145:7: warning: '_POSIX_C_SOURCE' is not defined, evaluates to 0 [-Wundef]
#if ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE) || (defined(__ANDROID__) && __ANDROID__)
      ^
../../../source/third_party/fmt/format.cpp:145:37: warning: '_XOPEN_SOURCE' is not defined, evaluates to 0 [-Wundef]
#if ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE) || (defined(__ANDROID__) && __ANDROID__)
                                    ^
3 warnings generated.
In file included from ../../../source/soundmanager/scripting/JSInterface_Sound.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/soundmanager/scripting/SoundGroup.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine.a(precompiled.o) has no symbols
In file included from ../../../source/graphics/Camera.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ColladaManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/CinemaManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/CameraController.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/Color.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/Decal.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/Font.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/FontMetrics.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/graphics/FontManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/Frustum.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/HFTracer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/HeightMipmap.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/ICameraController.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/GameView.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/LightEnv.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/LOSTexture.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/MapIO.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/MapGenerator.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/Material.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/MapWriter.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/MapReader.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/MaterialManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/MeshManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/MiniPatch.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ModelAbstract.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ModelDef.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Model.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/ObjectBase.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ObjectEntry.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Overlay.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ObjectManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/ParticleEmitter.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ParticleEmitterType.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Patch.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ParticleManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/PreprocessorWrapper.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/ShaderDefines.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ShaderManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ShaderProgram.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/ShaderProgramFFP.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/ShaderTechnique.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/SkeletonAnimDef.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/SmoothedValue.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/SkeletonAnimManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/Terrain.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/TerrainProperties.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/TerrainTextureEntry.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/TerritoryBoundary.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/TerrainTextureManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/TerritoryTexture.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/graphics/TextRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/TextureConverter.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/TextureManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/Unit.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/UnitAnimation.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/graphics/precompiled.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/scripting/JSInterface_GameView.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/UnitManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/AlphaMapCalculator.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/HWLightingModelRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/InstancingModelRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/DecalRData.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/MikktspaceWrap.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/ModelRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/ParticleRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/OverlayRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/PatchRData.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/PostprocManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/RenderModifiers.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/RenderingOptions.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/Renderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/Scene.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/ShadowMap.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/SilhouetteRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/TerrainOverlay.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/SkyManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/TerrainRenderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/TexturedLineRData.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/TimeManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/renderer/VertexArray.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/renderer/VertexBufferManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/VertexBuffer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/mikktspace/mikktspace.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/mikktspace/weldmesh.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/WaterManager.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/renderer/scripting/JSInterface_Renderer.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/third_party/ogre3d_preprocessor/OgreGLSLPreprocessor.cpp:1:
In file included from ../../../source/pch/graphics/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics.a(precompiled.o) has no symbols
In file included from ../../../source/pch/atlas/precompiled.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/CommandProc.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Brushes.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/ActorViewer.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/BrushHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/CameraCtrlHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/GameLoop.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/CinemaHandler.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/CommandHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/ElevationHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/EnvironmentHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/GraphicsSetupHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/MessageHandler.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/MapHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/PlayerHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/Handlers/ObjectHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/MiscHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Handlers/TerrainHandlers.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/InputProcessor.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/MessagePasserImpl.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Misc.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/Register.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/GameInterface/SimState.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/tools/atlas/GameInterface/View.cpp:1:
In file included from ../../../source/pch/atlas/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas.a(precompiled.o) has no symbols
In file included from ../../../source/gui/CGUISprite.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/gui/CGUIScrollBarVertical.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/CGUISetting.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
../../../source/gui/GUIManager.cpp:258:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(argVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~
In file included from ../../../source/gui/CGUI.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/GUIManager.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/CGUIText.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/GUIMatrix.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/GUIObjectTypes.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
4 warnings generated.
In file included from ../../../source/gui/GUIRenderer.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/GUIStringConversions.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/GUITooltip.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/IGUIScrollBar.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectBases/IGUIButtonBehavior.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectBases/IGUIObject.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectBases/IGUIScrollBarOwner.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectBases/IGUITextOwner.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CButton.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CChart.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CCheckBox.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CDropDown.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CImage.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/CHotkeyPicker.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CInput.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CList.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/gui/ObjectTypes/CMiniMap.cpp:254:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(coords);
        ^~~~~~~~~~~~~~~~ ~~~~~~
../../../source/gui/ObjectTypes/CMiniMap.cpp:255:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(buttonJs);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~
In file included from ../../../source/gui/ObjectTypes/CMiniMap.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/COList.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warning3 warnings generated.
s generated.
5 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CRadioButton.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
In file included from ../../../source/gui/ObjectTypes/CProgressBar.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/ObjectTypes/CSlider.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CText.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CTooltip.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/Scripting/JSInterface_CText.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/Scripting/GuiScriptConversions.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/gui/Scripting/JSInterface_GUIManager.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/Scripting/JSInterface_GUISize.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/Scripting/ScriptFunctions.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/SettingTypes/CGUIColor.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/Scripting/JSInterface_IGUIObject.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/SettingTypes/CGUISize.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/SettingTypes/CGUIString.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/pch/gui/precompiled.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/i18n/L10n.cpp:1:
In file included from ../../../source/pch/gui/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui.a(precompiled.o) has no symbols
../../../source/lib/sysdep/arch/amd64/amd64.cpp:70:9: warning: 'OSAtomicAdd64Barrier' is deprecated: first deprecated in macOS 10.12 - Use std::atomic_fetch_add() from <atomic> instead [-Wdeprecated-declarations]
        return OSAtomicAdd64Barrier(increment, (volatile int64_t*)location);
               ^
/usr/include/libkern/OSAtomicDeprecated.h:247:9: note: 'OSAtomicAdd64Barrier' has been explicitly marked deprecated here
int64_t OSAtomicAdd64Barrier( int64_t __theAmount,
        ^
../../../source/lib/sysdep/arch/amd64/amd64.cpp:76:9: warning: 'OSAtomicCompareAndSwapPtrBarrier' is deprecated: first deprecated in macOS 10.12 - Use std::atomic_compare_exchange_strong() from <atomic> instead [-Wdeprecated-declarations]
        return OSAtomicCompareAndSwapPtrBarrier((void*)expected, (void*)newValue, (void* volatile*)location);
               ^
/usr/include/libkern/OSAtomicDeprecated.h:547:6: note: 'OSAtomicCompareAndSwapPtrBarrier' has been explicitly marked deprecated here
bool    OSAtomicCompareAndSwapPtrBarrier( void *__oldValue, void *__newValue, void * volatile *__theValue );
        ^
../../../source/lib/sysdep/arch/amd64/amd64.cpp:81:9: warning: 'OSAtomicCompareAndSwap64Barrier' is deprecated: first deprecated in macOS 10.12 - Use std::atomic_compare_exchange_strong() from <atomic> instead [-Wdeprecated-declarations]
        return OSAtomicCompareAndSwap64Barrier(expected, newValue, location);
               ^
/usr/include/libkern/OSAtomicDeprecated.h:645:9: note: 'OSAtomicCompareAndSwap64Barrier' has been explicitly marked deprecated here
bool    OSAtomicCompareAndSwap64Barrier( int64_t __oldValue, int64_t __newValue,
        ^
3 warnings generated.
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(vfs_path.o) has no symbols
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
In file included from ../../../source/main.cpp:47:
In file included from ../../../source/ps/CLogger.h:28:
../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Security.framework/Security.tbd and library file /System/Library/Frameworks//Security.framework/Security are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenAL.framework/OpenAL.tbd and library file /System/Library/Frameworks//OpenAL.framework/OpenAL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
In file included from ../../../source/tools/atlas/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AGL.framework/AGL.tbd and library file /System/Library/Frameworks//AGL.framework/AGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: direct access in function 'wxLogger::~wxLogger()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxStringToNumHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxLogger::~wxLogger()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxStringToStringHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxCompositeWindow<wxSpinCtrlBase>::OnWindowCreate(wxWindowCreateEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
In file included from ../../../source/graphics/tests/test_Color.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_MapGenerator.cppIn file included from ../../../source/graphics/tests/test_Camera.cpp:1:
In file included from :1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
612/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25:  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
 note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
            static const uint64_t POWERS_OF_10_64[];
                                  ^/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]

  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: 
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit

  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]

                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h31: note: :592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_LOSTexture.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/tests/test_MeshManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_ShaderManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_Terrain.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/graphics/tests/test_TextureConverter.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/graphics/tests/test_TextureManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/tests/test_ParseString.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/gui/tests/test_GuiManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/allocators/tests/test_allocators.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/allocators/tests/test_headerless.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/file/common/tests/test_trace.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/file/vfs/tests/test_vfs_tree.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/file/vfs/tests/test_vfs_util.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/posix/tests/test_posix.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/res/graphics/tests/test_tex.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/sysdep/tests/test_rtl.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/sysdep/tests/test_sysdep.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/tests/test_adts.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_base32.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/tests/test_bits.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/tests/test_byte_order.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/tests/test_cache_adt.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_fnv_hash.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/tests/test_lib.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/tests/test_path.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
3 warnings generated.
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_path_util.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_rand.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/lib/tests/test_regex.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/lib/tests/test_secure_crt.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/lib/tests/test_wchar.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_Bound.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_BoundingSphere.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/tests/test_Brush.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_Fixed.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_FixedVector2D.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_FixedVector3D.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/maths/tests/test_MD5.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/maths/tests/test_Matrix3d.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/maths/tests/test_Sqrt.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/pch/test/precompiled.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/tests/test_Net.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/network/tests/test_NetMessage.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/GameSetup/tests/test_CmdLineArgs.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/XML/tests/test_RelaxNG.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/XML/tests/test_XMLWriter.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/XML/tests/test_XeroXMB.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/ps/XML/tests/test_Xeromyces.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/stub_impl_hack.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/test_CColor.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/tests/test_CLogger.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/test_CStr.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/test_ModIo.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/ps/tests/test_fmt.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/ps/tests/test_test.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/scriptinterface/tests/test_ScriptConversions.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/scriptinterface/tests/test_ScriptInterface.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_CinemaManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_CommandQueue.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_HierPathfinder.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_ObstructionManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_Pathfinder.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_Position.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_RangeManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/components/tests/test_TerritoryManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/components/tests/test_scripts.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/tests/test_CmpTemplateManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/tests/test_ComponentManager.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/tests/test_EntityMap.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/simulation2/tests/test_ParamNode.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
In file included from ../../../source/simulation2/tests/test_SerializeTemplates.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/tests/test_Serializer.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/simulation2/tests/test_Simulation2.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
In file included from ../../../source/test_setup.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/test_root.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/third_party/encryption/tests/test_pkcs5_pbkdf5.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/third_party/ogre3d_preprocessor/tests/test_Preprocessor.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
In file included from ../../../source/tools/atlas/AtlasObject/tests/test_AtlasObjectXML.cpp:1:
In file included from ../../../source/pch/test/precompiled.h:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::DIGITS' is explicitly instantiated in another translation unit
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Security.framework/Security.tbd and library file /System/Library/Frameworks//Security.framework/Security are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenAL.framework/OpenAL.tbd and library file /System/Library/Frameworks//OpenAL.framework/OpenAL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.

Link to build: https://jenkins.wildfiregames.com/job/macos-differential/2130/display/redirect

Vulcan requested changes to this revision.Nov 26 2020, 1:55 PM

Build failure - The Moirai have given mortals hearts that can endure.

builderr-debug-gcc7.txt
In file included from /usr/include/c++/8/vector:64,
                 from /usr/include/boost/filesystem/path_traits.hpp:26,
                 from /usr/include/boost/filesystem/path.hpp:25,
                 from /usr/include/boost/filesystem.hpp:16,
                 from ../../../source/lib/pch/pch_boost.h:57,
                 from ../../../source/lib/precompiled.h:79,
                 from ../../../source/pch/network/precompiled.h:19:
/usr/include/c++/8/bits/stl_vector.h: In instantiation of 'class std::vector<CallbackFunction>':
../../../source/network/fsm.h:102:15:   required from here
/usr/include/c++/8/bits/stl_vector.h:1630:2: internal compiler error: Segmentation fault
  _M_emplace_aux(const_iterator __position, _Args&&... __args);
  ^~~~~~~~~~~~~~
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-8/README.Bugs> for instructions.
make[1]: *** [network.make:145: obj/network_Debug/NetClient.o] Error 1
make: *** [Makefile:77: network] Error 2

Link to build: https://jenkins.wildfiregames.com/job/docker-differential/3798/display/redirect

This revision now requires changes to proceed.Nov 26 2020, 1:55 PM

Build failure - The Moirai have given mortals hearts that can endure.

builderr-debug-gcc7.txt
../../../source/ps/CConsole.cpp:22:2: error: invalid preprocessing directive #include
 #include "precompiled.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:23:2: error: invalid preprocessing directive #include
 #include <wctype.h>
  ^~~~~~~
../../../source/ps/CConsole.cpp:25:2: error: invalid preprocessing directive #include
 #include "CConsole.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:27:2: error: invalid preprocessing directive #include
 #include "graphics/FontMetrics.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:28:2: error: invalid preprocessing directive #include
 #include "graphics/ShaderManager.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:29:2: error: invalid preprocessing directive #include
 #include "graphics/TextRenderer.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:30:2: error: invalid preprocessing directive #include
 #include "gui/CGUI.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:31:2: error: invalid preprocessing directive #include
 #include "gui/GUIManager.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:32:2: error: invalid preprocessing directive #include
 #include "gui/GUIMatrix.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:33:2: error: invalid preprocessing directive #include
 #include "lib/ogl.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:34:2: error: invalid preprocessing directive #include
 #include "lib/timer.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:35:2: error: invalid preprocessing directive #include
 #include "lib/utf8.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:36:2: error: invalid preprocessing directive #include
 #include "maths/MathUtil.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:37:2: error: invalid preprocessing directive #include
 #include "network/NetClient.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:38:2: error: invalid preprocessing directive #include
 #include "network/NetServer.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:39:2: error: invalid preprocessing directive #include
 #include "ps/CLogger.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:40:2: error: invalid preprocessing directive #include
 #include "ps/Filesystem.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:41:2: error: invalid preprocessing directive #include
 #include "ps/GameSetup/Config.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:42:2: error: invalid preprocessing directive #include
 #include "ps/Globals.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:43:2: error: invalid preprocessing directive #include
 #include "ps/Hotkey.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:44:2: error: invalid preprocessing directive #include
 #include "ps/Profile.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:45:2: error: invalid preprocessing directive #include
 #include "ps/Pyrogenesis.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:46:2: error: invalid preprocessing directive #include
 #include "renderer/Renderer.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:47:2: error: invalid preprocessing directive #include
 #include "scriptinterface/ScriptInterface.h"
  ^~~~~~~
../../../source/ps/CConsole.cpp:49: confused by earlier errors, bailing out
make[1]: *** [engine.make:274: obj/engine_Debug/CConsole.o] Error 1
make: *** [Makefile:119: engine] Error 2

Link to build: https://jenkins.wildfiregames.com/job/docker-differential/3801/display/redirect

Vulcan resigned from this revision.Nov 26 2020, 4:53 PM

Successful build - Chance fights ever on the side of the prudent.

Link to build: https://jenkins.wildfiregames.com/job/docker-differential/3804/display/redirect

This revision now requires review to proceed.Nov 26 2020, 4:53 PM
wraitii abandoned this revision.Nov 26 2020, 5:43 PM

doesn't actually work beyond ascii because TextRenderer works with UTF16 and I don't care to change all that now, so for now I'll convert somewhere.