Page MenuHomeWildfire Games

More header tweaks
ClosedPublic

Authored by wraitii on Nov 21 2020, 12:35 PM.

Details

Summary

More header changes -> forward declaration, removed useless includes, and add MessageTypes.h to the simulation precompiled header since it's a rather hefty one and included in 35+ files, so probably good to add it there regardless of recompilation time. I'll check on CI.

Test Plan

Compile.

Diff Detail

Repository
rP 0 A.D. Public Repository
Lint
Automatic diff as part of commit; lint not applicable.
Unit
Automatic diff as part of commit; unit tests not applicable.

Event Timeline

There are a very large number of changes, so older changes are hidden. Show Older Changes
wraitii updated this revision to Diff 14157.Nov 22 2020, 9:31 PM

Hard fall down the rabbit hole. Most of the header changes should be sound, the precompiled changes might be looked at more, but some testing locally has shown them to be positive overall. I've also made ScriptInterface.h not include boost, since we could forward-declare. Not so easy with the component manager ATM, but that has other problems.

I haven't tested without PCH yet.

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:29:14: error: implicit instantiation of undefined template 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >'
        std::string content;
                    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:193:33: note: template is declared here
    class _LIBCPP_TYPE_VIS_ONLY basic_string;
                                ^
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:33:14: error: implicit instantiation of undefined template 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >'
        std::string json_cmd;
                    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:193:33: note: template is declared here
    class _LIBCPP_TYPE_VIS_ONLY basic_string;
                                ^
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:45:26: error: implicit instantiation of undefined template 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >'
const static std::string EMPTY_STATE;
                         ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:193:33: note: template is declared here
    class _LIBCPP_TYPE_VIS_ONLY basic_string;
                                ^
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:66:15: error: implicit instantiation of undefined template 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >'
                std::string m_GameState;
                            ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:193:33: note: template is declared here
    class _LIBCPP_TYPE_VIS_ONLY basic_string;
                                ^
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:71:18: warning: private field 'm_ScenarioConfig' is not used [-Wunused-private-field]
                ScenarioConfig m_ScenarioConfig;
                               ^
1 warning and 4 errors generated.
make[1]: *** [obj/rlinterface_Debug/RLInterface.o] Error 1
make: *** [rlinterface] Error 2

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

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

builderr-debug-gcc6.txt
In file included from ../../../source/lib/file/vfs/vfs_path.h:26:0,
                 from ../../../source/gui/GUIManager.h:21,
                 from ../../../source/rlinterface/RLInterface.cpp:24:
../../../source/lib/path.h: In member function 'Path Path::BeforeCommon(Path) const':
../../../source/lib/path.h:250:4: error: 'replace' is not a member of 'std'
    std::replace(other.path.begin(), other.path.end(), other.separator, ret.separator);
    ^~~
make[1]: *** [obj/rlinterface_Debug/RLInterface.o] Error 1
make: *** [rlinterface] Error 2

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

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

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

wraitii updated this revision to Diff 14158.Nov 23 2020, 9:13 AM

Did a clean no-pch build, hoping this builds.

Owners added a subscriber: Restricted Owners Package.Nov 23 2020, 9:13 AM

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:29:14: error: implicit instantiation of undefined template 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >'
        std::string content;
                    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:193:33: note: template is declared here
    class _LIBCPP_TYPE_VIS_ONLY basic_string;
                                ^
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:33:14: error: implicit instantiation of undefined template 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >'
        std::string json_cmd;
                    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:193:33: note: template is declared here
    class _LIBCPP_TYPE_VIS_ONLY basic_string;
                                ^
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:45:26: error: implicit instantiation of undefined template 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >'
const static std::string EMPTY_STATE;
                         ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:193:33: note: template is declared here
    class _LIBCPP_TYPE_VIS_ONLY basic_string;
                                ^
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:66:15: error: implicit instantiation of undefined template 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >'
                std::string m_GameState;
                            ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iosfwd:193:33: note: template is declared here
    class _LIBCPP_TYPE_VIS_ONLY basic_string;
                                ^
In file included from ../../../source/rlinterface/RLInterface.cpp:22:
../../../source/rlinterface/RLInterface.h:71:18: warning: private field 'm_ScenarioConfig' is not used [-Wunused-private-field]
                ScenarioConfig m_ScenarioConfig;
                               ^
1 warning and 4 errors generated.
make[1]: *** [obj/rlinterface_Debug/RLInterface.o] Error 1
make: *** [rlinterface] Error 2

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

On a full PCH build, it took 414 seconds with the patch and 438 without. About 5% better.

(I also still don't get why I can compile but CI can't... Need to sort that out).

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

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

wraitii updated this revision to Diff 14159.Nov 23 2020, 9:42 AM

Maybe fix RLInterface...

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
../../../source/simulation2/scripting/JSInterface_Simulation.cpp:154:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CFixedVector2D(-halfSize.X, -halfSize.Y),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
../../../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__)
                                    ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.a(precompiled.o) has no symbols
In file included from ../../../source/lib/file/archive/archive.cpp:28:
In file included from ../../../source/lib/file/archive/archive.h:30:
../../../source/lib/file/file_system.h:76:14: error: no type named 'vector' in namespace 'std'
typedef std::vector<CFileInfo> CFileInfos;
        ~~~~~^
../../../source/lib/file/file_system.h:76:20: error: expected unqualified-id
typedef std::vector<CFileInfo> CFileInfos;
                   ^
../../../source/lib/file/file_system.h:77:14: error: no type named 'vector' in namespace 'std'
typedef std::vector<OsPath> DirectoryNames;
        ~~~~~^
../../../source/lib/file/file_system.h:77:20: error: expected unqualified-id
typedef std::vector<OsPath> DirectoryNames;
                   ^
In file included from ../../../source/lib/file/archive/archive_zip.cpp:28:
In file included from ../../../source/lib/file/archive/archive_zip.h:30:
In file included from ../../../source/lib/file/archive/archive.h:30:
../../../source/lib/file/file_system.h:76:14: error: no type named 'vector' in namespace 'std'
typedef std::vector<CFileInfo> CFileInfos;
        ~~~~~^
../../../source/lib/file/file_system.h:76:20: error: expected unqualified-id
typedef std::vector<CFileInfo> CFileInfos;
                   ^
../../../source/lib/file/file_system.h:79:56: error: unknown type name 'CFileInfos'; did you mean 'CFileInfo'?
LIB_API Status GetDirectoryEntries(const OsPath& path, CFileInfos* files, DirectoryNames* subdirectoryNames);
                                                       ^~~~~~~~~~
                                                       CFileInfo
../../../source/lib/file/file_system.h:41:7: note: 'CFileInfo' declared here
class CFileInfo
      ^
../../../source/lib/file/file_system.h:77:14: error: no type named 'vector' in namespace 'std'
typedef std::vector<OsPath> DirectoryNames;
        ~~~~~^
../../../source/lib/file/file_system.h:77:20: error: expected unqualified-id
typedef std::vector<OsPath> DirectoryNames;
                   ^
../../../source/lib/file/file_system.h:79:75: error: unknown type name 'DirectoryNames'
LIB_API Status GetDirectoryEntries(const OsPath& path, CFileInfos* files, DirectoryNames* subdirectoryNames);
                                                                          ^
../../../source/lib/file/file_system.h:79:56: error: unknown type name 'CFileInfos'; did you mean 'CFileInfo'?
LIB_API Status GetDirectoryEntries(const OsPath& path, CFileInfos* files, DirectoryNames* subdirectoryNames);
                                                       ^~~~~~~~~~
                                                       CFileInfo
../../../source/lib/file/file_system.h:41:7: note: 'CFileInfo' declared here
class CFileInfo
      ^
../../../source/lib/file/file_system.h:79:75: error: unknown type name 'DirectoryNames'
LIB_API Status GetDirectoryEntries(const OsPath& path, CFileInfos* files, DirectoryNames* subdirectoryNames);
                                                                          ^
6 errors generated.
make[1]: *** [obj/lowlevel_Debug/archive.o] Error 1
make[1]: *** Waiting for unfinished jobs....
6 errors generated.
make[1]: *** [obj/lowlevel_Debug/archive_zip.o] Error 1
make: *** [lowlevel] Error 2

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

wraitii updated this revision to Diff 14160.Nov 23 2020, 9:57 AM

More includes for the header god

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

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

Silier added a subscriber: Silier.Nov 23 2020, 10:31 AM
Silier added inline comments.
source/network/NetServer.h
355 ↗(On Diff #14160)

something broke, from jenkins windows

network\NetServer.h(354): error C2039: 'time_t': is not a member of 'std' (compiling source file ..\..\..\source\network\NetServer.cpp)
wraitii added inline comments.Nov 23 2020, 10:36 AM
source/network/NetServer.h
355 ↗(On Diff #14160)

Fixed in the latest diff. I needed to include <ctime>

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
../../../source/simulation2/scripting/JSInterface_Simulation.cpp:154:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CFixedVector2D(-halfSize.X, -halfSize.Y),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
../../../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__)
                                    ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.a(precompiled.o) has no symbols
In file included from ../../../source/lib/file/common/real_directory.cpp:24:
In file included from ../../../source/lib/file/common/real_directory.h:27:
../../../source/lib/sysdep/dir_watch.h:84:14: error: no type named 'vector' in namespace 'std'
typedef std::vector<DirWatchNotification> DirWatchNotifications;
        ~~~~~^
../../../source/lib/sysdep/dir_watch.h:84:20: error: expected unqualified-id
typedef std::vector<DirWatchNotification> DirWatchNotifications;
                   ^
../../../source/lib/sysdep/dir_watch.h:99:31: error: unknown type name 'DirWatchNotifications'
LIB_API Status dir_watch_Poll(DirWatchNotifications& notifications);
                              ^
3 errors generated.
make[1]: *** [obj/lowlevel_Debug/real_directory.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make: *** [lowlevel] Error 2

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

wraitii updated this revision to Diff 14164.Nov 23 2020, 11:14 AM

Fix filesystem

wraitii added inline comments.Nov 23 2020, 11:16 AM
source/lib/file/file_system.h
33 ↗(On Diff #14160)

this one I should be able to replace with a forward declare

source/lib/file/vfs/vfs_path.h
29 ↗(On Diff #14160)

this one I should be able to replace with a forward declare

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

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

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
../../../source/simulation2/scripting/JSInterface_Simulation.cpp:154:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CFixedVector2D(-halfSize.X, -halfSize.Y),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
In file included from ../../../source/ps/Filesystem.cpp:25:
../../../source/lib/sysdep/dir_watch.h:41:14: error: no type named 'shared_ptr' in namespace 'std'
typedef std::shared_ptr<DirWatch> PDirWatch;
        ~~~~~^
../../../source/lib/sysdep/dir_watch.h:41:24: error: expected unqualified-id
typedef std::shared_ptr<DirWatch> PDirWatch;
                       ^
../../../source/lib/sysdep/dir_watch.h:60:50: error: unknown type name 'PDirWatch'; did you mean 'DirWatch'?
LIB_API Status dir_watch_Add(const OsPath& path, PDirWatch& dirWatch);
                                                 ^~~~~~~~~
                                                 DirWatch
../../../source/lib/sysdep/dir_watch.h:40:8: note: 'DirWatch' declared here
struct DirWatch;
       ^
../../../source/lib/sysdep/dir_watch.h:92:14: error: no type named 'vector' in namespace 'std'; did you mean 'hecto'?
typedef std::vector<DirWatchNotification> DirWatchNotifications;
        ~~~~~^~~~~~
             hecto
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ratio:268:43: note: 'hecto' declared here
typedef ratio<                100LL, 1LL> hecto;
                                          ^
In file included from ../../../source/ps/Filesystem.cpp:25:
../../../source/lib/sysdep/dir_watch.h:92:20: error: expected unqualified-id
typedef std::vector<DirWatchNotification> DirWatchNotifications;
                   ^
../../../source/lib/sysdep/dir_watch.h:107:31: error: unknown type name 'DirWatchNotifications'
LIB_API Status dir_watch_Poll(DirWatchNotifications& notifications);
                              ^
In file included from ../../../source/ps/Filesystem.cpp:28:
In file included from ../../../libraries/osx/boost/include/boost/filesystem.hpp:16:
In file included from ../../../libraries/osx/boost/include/boost/filesystem/path.hpp:25:
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:65:38: error: reference to 'vector' is ambiguous
  template<> struct is_pathable<std::vector<char> >     { static const bool value = true; };
                                ~~~~~^
../../../source/lib/sysdep/dir_watch.h:34:8: note: candidate found by name lookup is 'std::vector'
        class vector;
              ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator:1244:75: note: candidate found by name lookup is 'std::__1::vector'
    template <class _Tp, class _Alloc> friend class _LIBCPP_TYPE_VIS_ONLY vector;
                                                                          ^
In file included from ../../../source/ps/Filesystem.cpp:28:
In file included from ../../../libraries/osx/boost/include/boost/filesystem.hpp:16:
In file included from ../../../libraries/osx/boost/include/boost/filesystem/path.hpp:25:
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:65:38: error: unknown type name 'vector'; did you mean 'mozilla::Vector'?
  template<> struct is_pathable<std::vector<char> >     { static const bool value = true; };
                                     ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../libraries/source/spidermonkey/include-unix-debug/mozilla/Vector.h:281:7: note: 'mozilla::Vector' declared here
class Vector final : private AllocPolicy
      ^
In file included from ../../../source/ps/Filesystem.cpp:28:
In file included from ../../../libraries/osx/boost/include/boost/filesystem.hpp:16:
In file included from ../../../libraries/osx/boost/include/boost/filesystem/path.hpp:25:
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:66:38: error: reference to 'vector' is ambiguous
  template<> struct is_pathable<std::vector<wchar_t> >  { static const bool value = true; };
                                ~~~~~^
../../../source/lib/sysdep/dir_watch.h:34:8: note: candidate found by name lookup is 'std::vector'
        class vector;
              ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator:1244:75: note: candidate found by name lookup is 'std::__1::vector'
    template <class _Tp, class _Alloc> friend class _LIBCPP_TYPE_VIS_ONLY vector;
                                                                          ^
In file included from ../../../source/ps/Filesystem.cpp:28:
In file included from ../../../libraries/osx/boost/include/boost/filesystem.hpp:16:
In file included from ../../../libraries/osx/boost/include/boost/filesystem/path.hpp:25:
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:66:38: error: unknown type name 'vector'; did you mean 'mozilla::Vector'?
  template<> struct is_pathable<std::vector<wchar_t> >  { static const bool value = true; };
                                     ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../libraries/source/spidermonkey/include-unix-debug/mozilla/Vector.h:281:7: note: 'mozilla::Vector' declared here
class Vector final : private AllocPolicy
      ^
In file included from ../../../source/ps/Filesystem.cpp:28:
In file included from ../../../libraries/osx/boost/include/boost/filesystem.hpp:16:
In file included from ../../../libraries/osx/boost/include/boost/filesystem/path.hpp:25:
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:239:30: error: no type named 'vector' in namespace 'std'; did you mean 'hecto'?
    void dispatch(const std::vector<char>& c, U& to, const codecvt_type& cvt)
                        ~~~~~^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ratio:268:43: note: 'hecto' declared here
typedef ratio<                100LL, 1LL> hecto;
                                          ^
In file included from ../../../source/ps/Filesystem.cpp:28:
In file included from ../../../libraries/osx/boost/include/boost/filesystem.hpp:16:
In file included from ../../../libraries/osx/boost/include/boost/filesystem/path.hpp:25:
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:239:36: error: expected ')'
    void dispatch(const std::vector<char>& c, U& to, const codecvt_type& cvt)
                                   ^
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:239:18: note: to match this '('
    void dispatch(const std::vector<char>& c, U& to, const codecvt_type& cvt)
                 ^
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:241:9: error: use of undeclared identifier 'c'
    if (c.size())
        ^
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:242:17: error: use of undeclared identifier 'c'
      convert(&*c.begin(), &*c.begin() + c.size(), to, cvt);
                ^
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:242:30: error: use of undeclared identifier 'c'
      convert(&*c.begin(), &*c.begin() + c.size(), to, cvt);
                             ^
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:242:42: error: use of undeclared identifier 'c'
      convert(&*c.begin(), &*c.begin() + c.size(), to, cvt);
                                         ^
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:242:52: error: use of undeclared identifier 'to'
      convert(&*c.begin(), &*c.begin() + c.size(), to, cvt);
                                                   ^
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:242:56: error: use of undeclared identifier 'cvt'
      convert(&*c.begin(), &*c.begin() + c.size(), to, cvt);
                                                       ^
../../../libraries/osx/boost/include/boost/filesystem/path_traits.hpp:245:30: error: no type named 'vector' in namespace 'std'; did you mean 'hecto'?
    void dispatch(const std::vector<wchar_t>& c, U& to, const codecvt_type& cvt)
                        ~~~~~^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ratio:268:43: note: 'hecto' declared here
typedef ratio<                100LL, 1LL> hecto;
                                          ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
make[1]: *** [obj/engine_Debug/Filesystem.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make: *** [engine] Error 2

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

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

builderr-debug-gcc6.txt
In file included from ../../../source/ps/Filesystem.cpp:25:0:
../../../source/lib/sysdep/dir_watch.h:34:8: error: redeclared with 1 template parameter
  class vector;
        ^~~~~~
In file included from /usr/local/include/c++/6.5.0/vector:64:0,
                 from ../../../source/lib/pch/pch_stdlib.h:58,
                 from ../../../source/lib/precompiled.h:106,
                 from ../../../source/pch/engine/precompiled.h:18:
/usr/local/include/c++/6.5.0/bits/stl_vector.h:214:11: note: previous declaration 'template<class _Tp, class _Alloc> class std::vector' used 2 template parameters
     class vector : protected _Vector_base<_Tp, _Alloc>
           ^~~~~~
make[1]: *** [obj/engine_Debug/Filesystem.o] Error 1
make: *** [engine] Error 2

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

wraitii updated this revision to Diff 14171.Nov 24 2020, 9:15 AM

Remove the forward declaration which didn't work out as I'd hoped.

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
../../../source/simulation2/scripting/JSInterface_Simulation.cpp:154:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CFixedVector2D(-halfSize.X, -halfSize.Y),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
../../../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__)
                                    ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.a(precompiled.o) has no symbols
In file included from ../../../source/lib/sysdep/acpi.cpp:30:
../../../source/lib/sysdep/os/win/wfirmware.h:31:14: error: no type named 'vector' in namespace 'std'
typedef std::vector<TableId> TableIds;
        ~~~~~^
../../../source/lib/sysdep/os/win/wfirmware.h:31:20: error: expected unqualified-id
typedef std::vector<TableId> TableIds;
                   ^
../../../source/lib/sysdep/os/win/wfirmware.h:33:8: error: unknown type name 'TableIds'; did you mean 'TableId'?
extern TableIds GetTableIDs(Provider provider);
       ^~~~~~~~
       TableId
../../../source/lib/sysdep/os/win/wfirmware.h:30:13: note: 'TableId' declared here
typedef u32 TableId;
            ^
../../../source/lib/sysdep/os/win/wfirmware.h:35:14: error: no type named 'vector' in namespace 'std'
typedef std::vector<u8> Table;
        ~~~~~^
../../../source/lib/sysdep/os/win/wfirmware.h:35:20: error: expected unqualified-id
typedef std::vector<u8> Table;
                   ^
../../../source/lib/sysdep/os/win/wfirmware.h:37:8: error: unknown type name 'Table'
extern Table GetTable(Provider provider, TableId tableId);
       ^
../../../source/lib/sysdep/acpi.cpp:111:19: error: no type named 'TableIds' in namespace 'wfirmware'; did you mean 'TableId'?
        const wfirmware::TableIds tableIDs = wfirmware::GetTableIDs(provider);
              ~~~~~~~~~~~^~~~~~~~
                         TableId
../../../source/lib/sysdep/os/win/wfirmware.h:30:13: note: 'TableId' declared here
typedef u32 TableId;
            ^
../../../source/lib/sysdep/acpi.cpp:113:22: error: member reference base type 'const wfirmware::TableId' (aka 'const unsigned int') is not a structure or union
        numTables = tableIDs.size();
                    ~~~~~~~~^~~~~
../../../source/lib/sysdep/acpi.cpp:118:20: error: use of undeclared identifier 'table'; did you mean 'tables'?
                wfirmware::Table table = wfirmware::GetTable(provider, tableIDs[i]);
                                 ^~~~~
                                 tables
../../../source/lib/sysdep/acpi.cpp:108:54: note: 'tables' declared here
static void AllocateAndCopyTables(const AcpiTable**& tables, size_t& numTables)
                                                     ^
../../../source/lib/sysdep/acpi.cpp:118:19: error: expected ';' after expression
                wfirmware::Table table = wfirmware::GetTable(provider, tableIDs[i]);
                                ^
                                ;
../../../source/lib/sysdep/acpi.cpp:118:3: error: no member named 'Table' in namespace 'wfirmware'; did you mean 'tables'?
                wfirmware::Table table = wfirmware::GetTable(provider, tableIDs[i]);
                ^~~~~~~~~~~~~~~~
                tables
../../../source/lib/sysdep/acpi.cpp:108:54: note: 'tables' declared here
static void AllocateAndCopyTables(const AcpiTable**& tables, size_t& numTables)
                                                     ^
../../../source/lib/sysdep/acpi.cpp:118:66: error: subscripted value is not an array, pointer, or vector
                wfirmware::Table table = wfirmware::GetTable(provider, tableIDs[i]);
                                                                       ~~~~~~~~^~
../../../source/lib/sysdep/acpi.cpp:119:11: error: use of undeclared identifier 'table'
                ENSURE(!table.empty());
                        ^
../../../source/lib/sysdep/acpi.cpp:120:29: error: use of undeclared identifier 'table'
                tables[i] = AllocateTable(table.size());
                                          ^
../../../source/lib/sysdep/acpi.cpp:121:29: error: use of undeclared identifier 'table'
                memcpy((void*)tables[i], &table[0], table.size());
                                          ^
../../../source/lib/sysdep/acpi.cpp:121:39: error: use of undeclared identifier 'table'
                memcpy((void*)tables[i], &table[0], table.size());
                                                    ^
../../../source/lib/sysdep/acpi.cpp:118:14: warning: expression result unused [-Wunused-value]
                wfirmware::Table table = wfirmware::GetTable(provider, tableIDs[i]);
                           ^~~~~
1 warning and 16 errors generated.
make[1]: *** [obj/lowlevel_Debug/acpi.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make: *** [lowlevel] Error 2

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

wraitii updated this revision to Diff 14179.Nov 24 2020, 2:11 PM

Seems the mac build was failing because of something windows specific :P

Don't ask me why acpi was in sysdep/ instead of the windows subfolder.

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

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

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
../../../source/simulation2/scripting/JSInterface_Simulation.cpp:154:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CFixedVector2D(-halfSize.X, -halfSize.Y),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
../../../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__)
                                    ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(vfs_path.o) has no symbols
ld: warning: direct access in function 'RLMgCallback(mg_event, mg_connection*, mg_request_info const*)' from file 'obj/pyrogenesis_Debug/main.o' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'RLMgCallback(mg_event, mg_connection*, mg_request_info const*)' from file 'obj/pyrogenesis_Debug/main.o' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'tinygettext::POParser::parse()' from file '../../../binaries/system/libtinygettext_dbg.a(po_parser.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'JSI_Network::StartNetworkJoin(ScriptInterface::CmptPrivate*, CStrW const&, CStr8 const&, unsigned short, bool, CStr8 const&)' from file '../../../binaries/system/libengine_dbg.a(JSInterface_Network.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::Find(CStr8 const&) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::ReverseFind(CStr8 const&) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::AfterLast(CStr8 const&, unsigned long) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::BeforeLast(CStr8 const&, unsigned long) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::AfterFirst(CStr8 const&, unsigned long) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::BeforeFirst(CStr8 const&, unsigned long) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::Remove(CStr8 const&)' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::Replace(CStr8 const&, CStr8 const&)' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CTemplateLoader::LoadTemplateFile(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)' from file '../../../binaries/system/libengine_dbg.a(TemplateLoader.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'SplitExts(char const*)' from file '../../../binaries/system/libengine_dbg.a(Util.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'SplitExts(char const*)' from file '../../../binaries/system/libengine_dbg.a(Util.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'COList::HandleAdditionalChildren(XMBElement const&, CXeromyces*)' from file '../../../binaries/system/libgui_dbg.a(COList.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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/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: 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_Camera.cpp:17:
/Users/wfg/Jenkins/workspace/macos-differential/source/graphics/tests/test_Camera.h:168:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CVector3D(-101.0f, -101.0f, 101.0f),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
In file included from ../../../source/simulation2/tests/test_SerializeTemplates.cpp:17:
/Users/wfg/Jenkins/workspace/macos-differential/source/simulation2/tests/test_SerializeTemplates.h:39:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        3, 0, 1, 4, 1, 5
                        ^~~~~~~~~~~~~~~~
                        {               }
1 warning generated.
ld: warning: direct access in function 'TestCLogger::ParseOutput()' from file 'obj/test_Debug/test_CLogger.o' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CxxTest::XmlFormatter::enterSuite(CxxTest::SuiteDescription const&)' from file 'obj/test_Debug/test_root.o' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'ts_str_contains(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)' from file 'obj/test_Debug/test_setup.o' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'tinygettext::POParser::parse()' from file '../../../binaries/system/libtinygettext_dbg.a(po_parser.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'JSI_Network::StartNetworkJoin(ScriptInterface::CmptPrivate*, CStrW const&, CStr8 const&, unsigned short, bool, CStr8 const&)' from file '../../../binaries/system/libengine_dbg.a(JSInterface_Network.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::Find(CStr8 const&) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::ReverseFind(CStr8 const&) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::AfterLast(CStr8 const&, unsigned long) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::BeforeLast(CStr8 const&, unsigned long) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::AfterFirst(CStr8 const&, unsigned long) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::BeforeFirst(CStr8 const&, unsigned long) const' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::Remove(CStr8 const&)' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CStr8::Replace(CStr8 const&, CStr8 const&)' from file '../../../binaries/system/libengine_dbg.a(CStr.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'CTemplateLoader::LoadTemplateFile(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)' from file '../../../binaries/system/libengine_dbg.a(TemplateLoader.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'SplitExts(char const*)' from file '../../../binaries/system/libengine_dbg.a(Util.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'SplitExts(char const*)' from file '../../../binaries/system/libengine_dbg.a(Util.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.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 'COList::HandleAdditionalChildren(XMBElement const&, CXeromyces*)' from file '../../../binaries/system/libgui_dbg.a(COList.o)' to global weak symbol 'std::__1::char_traits<char>::eq(char, char)' from file '../../../libraries/osx/gloox/lib/libgloox.a(clientbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
builderr-release-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork.a(precompiled.o) has no symbols
/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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper.a(precompiled.o) has no symbols
../../../source/simulation2/scripting/JSInterface_Simulation.cpp:154:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CFixedVector2D(-halfSize.X, -halfSize.Y),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface.a(precompiled.o) has no symbols
../../../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__)
                                    ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui.a(precompiled.o) has no symbols
/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
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: 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_Camera.cpp:17:
/Users/wfg/Jenkins/workspace/macos-differential/source/graphics/tests/test_Camera.h:168:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CVector3D(-101.0f, -101.0f, 101.0f),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
In file included from ../../../source/simulation2/tests/test_SerializeTemplates.cpp:17:
/Users/wfg/Jenkins/workspace/macos-differential/source/simulation2/tests/test_SerializeTemplates.h:39:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        3, 0, 1, 4, 1, 5
                        ^~~~~~~~~~~~~~~~
                        {               }
1 warning generated.

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

wraitii updated this revision to Diff 14207.Nov 26 2020, 10:40 AM

Fix acpi include

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

builderr-debug-gcc7.txt
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::PersistentRooted<JS::Value>, bool}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::PersistentRooted<JS::Value>}]':
../../../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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Handle<JS::Value>, int, JS::Handle<JS::Value>}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Handle<JS::Value>, int}]':
../../../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]
../../../source/simulation2/components/CCmpAIManager.cpp: In member function 'bool CAIWorker::TryLoadSharedComponent()':
../../../source/simulation2/components/CCmpAIManager.cpp:461:14: 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]
   argv.append(settings);
   ~~~~~~~~~~~^~~~~~~~~~
../../../source/simulation2/components/CCmpAIManager.cpp: In member function 'bool CAIWorker::CAIPlayer::Initialise()':
../../../source/simulation2/components/CCmpAIManager.cpp:162:15: 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]
    argv.append(settings.get());
    ~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>, JS::PersistentRooted<JS::Value>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {int, JS::PersistentRooted<JS::Value>}]':
../../../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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::MutableHandle<T>, const Ts& ...) const [with R = JS::Value; Ts = {bool}]':
../../../source/scriptinterface/NativeWrapperDefns.h:206: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::MutableHandle<T>, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:206: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::vector<CStr8>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = float; Ts = {std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {int}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {std::vector<unsigned int, std::allocator<unsigned int> >}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::vector<unsigned int>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::MutableHandle<T>, const Ts& ...) const [with R = JS::Value; Ts = {int, std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, JS::Handle<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:206: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixedVector3D; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CColor; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = unsigned int; Ts = {int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {int}]':
../../../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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixedVector2D; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::vector<unsigned int>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {unsigned int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {bool}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixed<int, 2147483647, 32, 15, 16, 65536>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = short unsigned int; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../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/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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {unsigned int, CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {unsigned int, CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, unsigned int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = unsigned int; Ts = {std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, unsigned int, unsigned int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixed<int, 2147483647, 32, 15, 16, 65536>; Ts = {std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, CFixed<int, 2147483647, 32, 15, 16, 65536>, unsigned int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {int, bool, bool}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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/simulation2/system/ReplayTurnManager.cpp: In member function 'virtual void CReplayTurnManager::NotifyFinishedUpdate(u32)':
../../../source/simulation2/system/ReplayTurnManager.cpp:94: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(turn));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
../../../source/simulation2/system/ReplayTurnManager.cpp:98: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(hashVal);
  ~~~~~~~~~~~~~~~~^~~~~~~~~
../../../source/simulation2/system/ReplayTurnManager.cpp:102: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(expectedHashVal);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/scriptinterface/ScriptInterface.cpp:21:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 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:487,
                 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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/ps/GameSetup/HWDetect.cpp:20:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/gui/CGUI.h:33,
                 from ../../../source/pch/gui/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>, JS::Rooted<JS::Value>}]':
../../../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/gui/GUIManager.cpp: In member function 'void CGUIManager::SGUIPage::PerformCallbackFunction(ScriptInterface::StructuredClone)':
../../../source/gui/GUIManager.cpp:258: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(argVal);
  ~~~~~~~~~~~~~~~~^~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/gui/CGUI.h:33,
                 from ../../../source/pch/gui/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {SDL_Event_, IGUIObject*}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {SDL_Event_}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/gui/ObjectBases/IGUIObject.cpp: In member function 'InReaction IGUIObject::SendMouseEvent(EGUIMessageType, const CStr8&)':
../../../source/gui/ObjectBases/IGUIObject.cpp:406:24: 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]
  (void)paramData.append(mouse);
        ~~~~~~~~~~~~~~~~^~~~~~~
../../../source/gui/ObjectTypes/CMiniMap.cpp: In member function 'bool CMiniMap::FireWorldClickEvent(int, int)':
../../../source/gui/ObjectTypes/CMiniMap.cpp:254: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(coords);
  ~~~~~~~~~~~~~~~~^~~~~~~~
../../../source/gui/ObjectTypes/CMiniMap.cpp:255: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(buttonJs);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~
../../../source/lib/res/h_mgr.cpp: In function 'void h_free_hd(HDATA*)':
../../../source/lib/res/h_mgr.cpp:560:27: warning: 'void* memset(void*, int, size_t)' clearing an object of type 'struct HDATA' with no trivial copy-assignment; use assignment or value-initialization instead [-Wclass-memaccess]
  memset(hd, 0, sizeof(*hd));
                           ^
../../../source/lib/res/h_mgr.cpp:132:8: note: 'struct HDATA' declared here
 struct HDATA
        ^~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/simulation2/system/ComponentTest.h:26,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {JS::Rooted<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixedVector3D; Ts = {JS::Rooted<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixedVector2D; Ts = {JS::Rooted<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/simulation2/system/ComponentTest.h:26,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {JS::Rooted<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Handle<JS::Value>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::MutableHandle<T>, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:206: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {JS::Handle<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/simulation2/system/ComponentTest.h:26,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::PersistentRooted<JS::Value>, bool}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::PersistentRooted<JS::Value>}]':
../../../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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Handle<JS::Value>, int, JS::Handle<JS::Value>}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Handle<JS::Value>, int}]':
../../../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]
../../../source/simulation2/components/CCmpAIManager.cpp: In member function 'bool CAIWorker::TryLoadSharedComponent()':
../../../source/simulation2/components/CCmpAIManager.cpp:461:14: 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]
   argv.append(settings);
   ~~~~~~~~~~~^~~~~~~~~~
../../../source/simulation2/components/CCmpAIManager.cpp: In member function 'bool CAIWorker::CAIPlayer::Initialise()':
../../../source/simulation2/components/CCmpAIManager.cpp:162:15: 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]
    argv.append(settings.get());
    ~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>, JS::PersistentRooted<JS::Value>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {int, JS::PersistentRooted<JS::Value>}]':
../../../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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::MutableHandle<T>, const Ts& ...) const [with R = JS::Value; Ts = {bool}]':
../../../source/scriptinterface/NativeWrapperDefns.h:206: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::MutableHandle<T>, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:206: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::vector<CStr8>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = float; Ts = {std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {int}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {std::vector<unsigned int, std::allocator<unsigned int> >}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::vector<unsigned int>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::MutableHandle<T>, const Ts& ...) const [with R = JS::Value; Ts = {int, std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, JS::Handle<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:206: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixedVector3D; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CColor; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = unsigned int; Ts = {int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {int}]':
../../../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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixedVector2D; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, unsigned int}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::vector<unsigned int>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {unsigned int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {bool}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixed<int, 2147483647, 32, 15, 16, 65536>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = short unsigned int; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../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/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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {unsigned int, CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {unsigned int, CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>, CFixed<int, 2147483647, 32, 15, 16, 65536>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, unsigned int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = unsigned int; Ts = {std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, unsigned int, unsigned int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixed<int, 2147483647, 32, 15, 16, 65536>; Ts = {std::__cxx11::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >, CFixed<int, 2147483647, 32, 15, 16, 65536>, unsigned int}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {int, bool, bool}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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/simulation2/system/ReplayTurnManager.cpp: In member function 'virtual void CReplayTurnManager::NotifyFinishedUpdate(u32)':
../../../source/simulation2/system/ReplayTurnManager.cpp:94: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(turn));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
../../../source/simulation2/system/ReplayTurnManager.cpp:98: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(hashVal);
  ~~~~~~~~~~~~~~~~^~~~~~~~~
../../../source/simulation2/system/ReplayTurnManager.cpp:102: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(expectedHashVal);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/scriptinterface/ScriptInterface.cpp:21:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<wchar_t>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 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:487,
                 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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/ps/GameSetup/HWDetect.cpp:20:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/pch/atlas/precompiled.h:26:
../../../source/tools/atlas/GameInterface/Messages.h: In function 'void AtlasMessage::fGetTerrainGroupPreviews(AtlasMessage::qGetTerrainGroupPreviews*)':
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
 struct sTerrainTexturePreview
        ^~~~~~~~~~~~~~~~~~~~~~
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
 struct sTerrainTexturePreview
        ^~~~~~~~~~~~~~~~~~~~~~
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/gui/CGUI.h:33,
                 from ../../../source/pch/gui/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>, JS::Rooted<JS::Value>}]':
../../../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/gui/GUIManager.cpp: In member function 'void CGUIManager::SGUIPage::PerformCallbackFunction(ScriptInterface::StructuredClone)':
../../../source/gui/GUIManager.cpp:258: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(argVal);
  ~~~~~~~~~~~~~~~~^~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/gui/CGUI.h:33,
                 from ../../../source/pch/gui/precompiled.h:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {SDL_Event_, IGUIObject*}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = bool; Ts = {SDL_Event_}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/gui/ObjectBases/IGUIObject.cpp: In member function 'InReaction IGUIObject::SendMouseEvent(EGUIMessageType, const CStr8&)':
../../../source/gui/ObjectBases/IGUIObject.cpp:406:24: 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]
  (void)paramData.append(mouse);
        ~~~~~~~~~~~~~~~~^~~~~~~
../../../source/gui/ObjectTypes/CMiniMap.cpp: In member function 'bool CMiniMap::FireWorldClickEvent(int, int)':
../../../source/gui/ObjectTypes/CMiniMap.cpp:254: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(coords);
  ~~~~~~~~~~~~~~~~^~~~~~~~
../../../source/gui/ObjectTypes/CMiniMap.cpp:255: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(buttonJs);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~
../../../source/lib/res/h_mgr.cpp: In function 'void h_free_hd(HDATA*)':
../../../source/lib/res/h_mgr.cpp:560:27: warning: 'void* memset(void*, int, size_t)' clearing an object of type 'struct HDATA' with no trivial copy-assignment; use assignment or value-initialization instead [-Wclass-memaccess]
  memset(hd, 0, sizeof(*hd));
                           ^
../../../source/lib/res/h_mgr.cpp:132:8: note: 'struct HDATA' declared here
 struct HDATA
        ^~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/simulation2/system/ComponentTest.h:26,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {JS::Rooted<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixedVector3D; Ts = {JS::Rooted<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = CFixedVector2D; Ts = {JS::Rooted<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/simulation2/system/ComponentTest.h:26,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Rooted<JS::Value>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::Rooted<T>*, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:196: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {JS::Rooted<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {JS::Handle<JS::Value>}]':
../../../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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, JS::MutableHandle<T>, const Ts& ...) const [with R = JS::Value; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:206: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = int; Ts = {JS::Handle<JS::Value>}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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]
In file included from ../../../source/scriptinterface/ScriptInterface.h:487,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/simulation2/system/ComponentTest.h:26,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunction(JS::HandleValue, const char*, R&, const Ts& ...) const [with R = std::__cxx11::basic_string<char>; Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:183: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));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~

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

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

builderr-debug-macos.txt
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/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];
                                                ^
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];
                                                ^
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.
3 warnings generated.
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/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/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];
                                                ^
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];
                                                ^
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];
                                                ^
3 warnings generated.
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];
                                                ^
3 warnings generated.
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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
In file included from ../../../source/rlinterface/RLInterface.cpp:27:
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];
                                                ^
3 warnings generated.
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];
                                                ^
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/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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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];
                                                ^
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/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.
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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.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];
                                                ^
3 warnings generated.
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.
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/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/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.
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.
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];
                                                ^
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.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_dbg.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];
                                                ^
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/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/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];
                                                ^
3 warnings generated.
../../../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);
                ^~~~~~~~~~~ ~~~~~~~~
3 warnings generated.
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/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: 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;
                        ^
warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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/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];
                                                ^
3 warnings generated.
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/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];
                                                ^
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];
                                                ^
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.
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/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.
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];
                                                ^
3 warnings generated.
3 warnings generated.
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];
                                                ^
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];
                                                ^
3 warnings generated.
3 warnings generated.
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];
                                                ^
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/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];
                                                ^
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];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from In file included from ../../../source/simulation2/components/CCmpVision.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
../../../source/simulation2/components/CCmpUnitRenderer.cpp:1:
In file included from ../../../source/pch/simulation2/precompiled.h:19:
In file included from ../../../source/lib/precompiled.h:111In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::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/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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/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];
                                                ^
3 warnings generated.
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;
                        ^
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/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.
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.
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];
                                                ^
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];
                                                ^
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;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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];
                                                ^
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.
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.
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];
                                                ^
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];
                                                ^
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];
                                                ^
3 warnings generated.
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;
                        ^
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/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];
                                                ^
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;
                        ^
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/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.
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/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/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];
                                                ^
3 warnings generated.
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.
3 warnings generated.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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/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];
                                                ^
3 warnings generated.
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.
3 warnings generated.
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.
In file included from In file included from ../../../source/simulation2/components/ICmpSoundManager.cpp:../../../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]
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:
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h: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:591:35: note: forward declaration of template entity is here
  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:591:35: note: forward declaration of template entity is here
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' 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  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_64' is explicitly instantiated in another translation unit                        ^

/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
25: warning:                         ^
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
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h            static const uint32_t POWERS_OF_10_32[];
                                  ^
:/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::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:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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/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]
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;
                        ^
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::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.
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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];
                                                ^
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.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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/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];
                                                ^
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];
                                                ^
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/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/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/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.
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;
                        ^
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/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/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/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.
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/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];
                                                ^
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];
                                                ^
3 warnings generated.
3 warnings generated.
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];
                                                ^
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];
                                                ^
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/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/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/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];
                                                ^
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];
                                                ^
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];
                                                ^
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/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];
                                                ^
../../../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];
                                                ^
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.
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];
                                                ^
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.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/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.
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];
                                                ^
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.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];
                                                ^
3 warnings generated.
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];
                                                ^
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.
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/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/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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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];
                                                ^
3 warnings generated.
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;
                        ^
3 warnings generated.
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/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];
                                                ^
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];
                                                ^
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;
                        ^
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/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/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/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/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/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.
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/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];
                                                ^
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];
                                                ^
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.
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];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
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/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.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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/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.
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];
                                                ^
3 warnings generated.
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.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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/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];
                                                ^
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];
                                                ^
3 warnings generated.
../../../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/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];
                                                ^
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.
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/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];
                                                ^
5 warnings generated.
3 warnings generated.
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;
                        ^
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/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/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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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;
                        ^
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/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];
                                                ^
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/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/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];
                                                ^
3 warnings generated.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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/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.
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];
                                                ^
3 warnings generated.
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;
                            ^
3 warnings generated.
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_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_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.
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];
                                                ^
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];
                                                ^
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_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/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];
                                                ^
3 warnings generated.
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];
                                                ^
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];
                                                ^
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];
                                                ^
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;
                        ^
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/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/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/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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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];
                                                ^
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.
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];
                                                ^
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];
                                                ^
3 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
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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.
3 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.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];
                                                ^
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];
                                                ^
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];
                                                ^
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;
                        ^
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/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/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.
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];
                                                ^
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];
                                                ^
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.
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.
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.
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/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];
                                                ^
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];
                                                ^
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];
                                                ^
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.
3 warnings generated.
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/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.
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/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.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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];
                                                ^
3 warnings generated.
3 warnings generated.
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];
                                                ^
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/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/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/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.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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];
                                                ^
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];
                                                ^
3 warnings generated.
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/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/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.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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.
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/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.
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];
                                                ^
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];
                                                ^
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.
3 warnings generated.
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];
                                                ^
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;
                        ^
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/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/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;
                        ^
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/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/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];
                                                ^
3 warnings generated.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
3 warnings generated.
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];
                                                ^
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/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];
                                                ^
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.
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];
                                                ^
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.
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];
                                                ^
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.
3 warnings generated.
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.
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];
                                                ^
3 warnings generated.
3 warnings generated.
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];
                                                ^
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.
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];
                                                ^
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/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/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];
                                                ^
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/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
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:             static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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/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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.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];
                                                ^
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];
                                                ^
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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];
                                                ^
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];
                                                ^
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.
3 warnings generated.
3 warnings generated.
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];
                                                ^
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];
                                                ^
3 warnings generated.
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.
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.
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/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/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];
                                                ^
3 warnings generated.
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];
                                                ^
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.
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.
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_dbg.a(precompiled.o) has no symbols
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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];
                                                ^
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/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.
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.
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.
3 warnings generated.
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];
                                                ^
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];
                                                ^
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.
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];
                                                ^
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];
                                                ^
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.
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];
                                                ^
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];
                                                ^
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];
                                                ^
../../../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];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
In file included from ../../../source/gui/ObjectTypes/CProgressBar.cpp:1:
In file included from 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]
../../../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  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h: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:591:35: note: forward declaration of template entity is here
  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:/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
591:35: note: forward declaration of template entity is here
  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:/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
612:25: note:             static const uint32_t POWERS_OF_10_32[];
                                  ^
add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25:   return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/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                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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.
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];
                                                ^
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];
                                                ^
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.
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];
                                                ^
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_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/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/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/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];
                                                ^
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];
                                                ^
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];
                                                ^
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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.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:33:
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_dbg.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(vfs_path.o) has no symbols
In file included from ../../../source/main.cpp:45:
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//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//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/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_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_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_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];
                                                ^
3 warnings generated.
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];
                                                ^
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];
                                                ^
3 warnings generated.
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];
                                                ^
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.
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.
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.
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.
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];
                                                ^
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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;
                        ^
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_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.
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];
                                                ^
3 warnings generated.
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];
                                                ^
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.
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];
                                                ^
3 warnings generated.
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/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.
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];
                                                ^
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_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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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_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];
                                                ^
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;
                        ^
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/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];
                                                ^
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.
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;
                        ^
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/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;
                        ^
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/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_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_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.
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];
                                                ^
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/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];
                                                ^
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.
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/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_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.
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.
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//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//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: 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/NetFileTransfer.cpp:1:
In file included from ../../../source/pch/network/precompiled.h:In file included from 19:
In file included from ../../../source/lib/precompiled.h:../../../source/network/NetHost.cpp:1111:
:
In file included from ../../../source/pch/network/precompiled.h:19In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35::
In file included from ../../../source/lib/precompiled.h: note: 111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.hforward declaration of template entity is here
:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
/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:                        ^
25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]

  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return 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]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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/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.
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.
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.
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];
                                                ^
3 warnings generated.
3 warnings generated.
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:27:
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];
                                                ^
3 warnings generated.
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];
                                                ^
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.
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.
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];
                                                ^
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/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.
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.
/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/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/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/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.
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];
                                                ^
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;
                        ^
../../../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());
                        ^~~~~~~~~~~ ~~~~~~~~~~~~~~
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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: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/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/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;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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];
                                                ^
3 warnings generated.
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.
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];
                                                ^
3 warnings generated.
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.
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.
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];
                                                ^
3 warnings generated.
5 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];
                                                ^
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];
                                                ^
3 warnings generated.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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.
3 warnings generated.
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];
                                                ^
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/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.
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];
                                                ^
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];
                                                ^
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.
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/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];
                                                ^
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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;
                        ^
3 warnings generated.
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/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];
                                                ^
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.
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.
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];
                                                ^
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];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
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];
                                                ^
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];
                                                ^
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];
                                                ^
3 warnings generated.
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.
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];
                                                ^
3 warnings generated.
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];
                                                ^
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;
                        ^
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/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];
                                                ^
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/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];
                                                ^
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];
                                                ^
3 warnings generated.
3 warnings generated.
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.
3 warnings generated.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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/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];
                                                ^
3 warnings generated.
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.
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.
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.
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;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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.
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;
                        ^
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/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];
                                                ^
3 warnings generated.
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];
                                                ^
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.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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];
                                                ^
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.
3 warnings generated.
3 warnings generated.
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[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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];
                                                ^
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];
                                                ^
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/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/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];
                                                ^
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];
                                                ^
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.
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.
3 warnings generated.
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];
                                                ^
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.
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];
                                                ^
3 warnings generated.
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.
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.
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;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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/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];
                                                ^
3 warnings generated.
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.
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];
                                                ^
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];
                                                ^
3 warnings generated.
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];
                                                ^
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];
                                                ^
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/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.
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];
                                                ^
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];
                                                ^
3 warnings generated.
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];
                                                ^
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.
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/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.
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];
                                                ^
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.
3 warnings generated.
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/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/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/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];
                                                ^
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];
                                                ^
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.
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.
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/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/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/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.
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.
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];
                                                ^
3 warnings generated.
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/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];
                                                ^
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;
                        ^
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/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];
                                                ^
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/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.
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.
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];
                                                ^
3 warnings generated.
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];
                                                ^
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/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];
                                                ^
3 warnings generated.
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/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];
                                                ^
../../../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/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/KeyName.cpp:1:
In file included from ../../../source/pch/engine/precompiled.h3 warnings generated.
:18:
In file included from ../../../source/lib/precompiled.h:111:
In file included from ../../../source/ps/CLogger.h:28:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_64' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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];
                                                ^
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];
                                                ^
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];
                                                ^
3 warnings generated.
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/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];
                                                ^
5 warnings generated.
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];
                                                ^
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];
                                                ^
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.
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/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];
                                                ^
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/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.
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.
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;
                            ^
3 warnings generated.
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_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.
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];
                                                ^
3 warnings generated.
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.
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];
                                                ^
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_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/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];
                                                ^
3 warnings generated.
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.
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.
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/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;
                        ^
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/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];
                                                ^
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];
                                                ^
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];
                                                ^
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.
3 warnings generated.
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];
                                                ^
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__)
                                    ^
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:24493 warnings generated.
:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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];
                                                ^
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];
                                                ^
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];
                                                ^
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/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/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.
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.
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];
                                                ^
3 warnings generated.
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];
                                                ^
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.
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/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.
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/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/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];
                                                ^
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];
                                                ^
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];
                                                ^
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/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/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/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.
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/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];
                                                ^
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];
                                                ^
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/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.
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/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/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/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.
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];
                                                ^
3 warnings generated.
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.
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/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];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
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];
                                                ^
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];
                                                ^
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.
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.
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];
                                                ^
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.
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];
                                                ^
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.
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];
                                                ^
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];
                                                ^
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.
3 warnings generated.
3 warnings generated.
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];
                                                ^
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];
                                                ^
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];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
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/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];
                                                ^
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];
                                                ^
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];
                                                ^
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/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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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.
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/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.
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/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.
3 warnings generated.
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];
                                                ^
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.
3 warnings generated.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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.
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.
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;
                        ^
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/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];
                                                ^
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/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/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/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.
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.
/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];
                                                ^
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];
                                                ^
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/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.
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];
                                                ^
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.
3 warnings generated.
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];
                                                ^
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/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/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;
                        ^
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/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/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/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];
                                                ^
3 warnings generated.
3 warnings generated.
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/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];
                                                ^
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.
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.
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.
../../../source/gui/GUIManager.cpp:258:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(argVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~
3 warnings generated.
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];
                                                ^
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.
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.
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];
                                                ^
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];
                                                ^
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.
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;
                        ^
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/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.
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.
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.
3 warnings generated.
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];
                                                ^
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.
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];
                                                ^
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];
                                                ^
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 warnings generated.
../../../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];
                                                ^
3 warnings generated.
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];
                                                ^
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;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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];
                                                ^
5 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];
                                                ^
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_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.
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];
                                                ^
3 warnings generated.
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];
                                                ^
3 warnings generated.
3 warnings generated.
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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/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.
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:33:
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
In file included from ../../../source/main.cpp:45:
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//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//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//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/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/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/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];
                                                ^
3 warnings generated.
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.
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];
                                                ^
3 warnings generated.
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;
                        ^
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/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/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.
3 warnings generated.
3 warnings generated.
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/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/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];
                                                ^
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.
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];
                                                ^
3 warnings generated.
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.
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.
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];
                                                ^
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.
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.
3 warnings generated.
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;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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];
                                                ^
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.
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/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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this warning if '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];
                                                ^
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];
                                                ^
3 warnings generated.
3 warnings generated.
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/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.
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];
                                                ^
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/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]
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
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:591:35: note: forward declaration of template entity is here
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
            static const uint32_t POWERS_OF_10_32[];
                                  ^
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return 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/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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_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.
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];
                                                ^
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];
                                                ^
3 warnings generated.
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];
                                                ^
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;
                        ^
In file included from ../../../source/ps/tests/test_fmt.cpp:1:
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h: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.h591:35: note: forward declaration of template entity is here
: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]
            static const uint64_t POWERS_OF_10_64[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:612:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
  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
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: warning: instantiation of variable 'fmt::internal::BasicData<void>::POWERS_OF_10_32' required here, but no definition is available [-Wundefined-var-template]
            static const uint64_t POWERS_OF_10_64[];
                                  ^
  return t - (n < Data::POWERS_OF_10_32[t]) + 1;../../../source/third_party/fmt/format.h:612:25
                        ^
: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_64' is explicitly instantiated in another translation unit
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:590:35: note: forward declaration of template entity is here
            static const uint32_t POWERS_OF_10_32[];
                                  ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:636:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::internal::BasicData<void>::POWERS_OF_10_32' is explicitly instantiated in another translation unit
  return t - (n < Data::POWERS_OF_10_64[t]) + 1;
                        ^
  return t - (n < Data::POWERS_OF_10_32[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;
                        ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration 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.h:2449:49: warning: instantiation 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.
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.
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.
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];
                                                ^
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];
                                                ^
3 warnings generated.
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];
                                                ^
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];
                                                ^
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.
3 warnings generated.
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];
                                                ^
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_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];
                                                ^
3 warnings generated.
3 warnings generated.
3 warnings generated.
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];
                                                ^
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];
                                                ^
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.
3 warnings generated.
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];
                                                ^
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/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;
                        ^
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];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: warning: instantiation of variable 'fmt::internal::BasicData<void>::DIGITS' required here, but no definition is available [-Wundefined-var-template]
                *--buffer_end = internal::Data::DIGITS[index + 1];
                                                ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:592:31: note: forward declaration of template entity is here
            static const char DIGITS[];
                              ^
/Users/wfg/Jenkins/workspace/macos-differential/build/workspaces/gcc/../../../source/third_party/fmt/format.h:2449:49: note: add an explicit instantiation declaration to suppress this 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/2133/display/redirect

wraitii updated this revision to Diff 14364.Dec 3 2020, 3:00 PM

Rebase. I did a nopchbuild locally, but I won't trust that and test on CI I think.

Vulcan added a comment.Dec 3 2020, 3:22 PM

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(vfs_path.o) has no symbols
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//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/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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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//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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork.a(precompiled.o) has no symbols
/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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2.a(precompiled.o) has no symbols
/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/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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas.a(precompiled.o) has no symbols
/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.
/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//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/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//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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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//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//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/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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/2251/display/redirect

Vulcan added a comment.Dec 3 2020, 4:12 PM

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

builderr-debug-gcc7.txt
../../../source/lib/res/h_mgr.cpp: In function 'void h_free_hd(HDATA*)':
../../../source/lib/res/h_mgr.cpp:560:27: warning: 'void* memset(void*, int, size_t)' clearing an object of type 'struct HDATA' with no trivial copy-assignment; use assignment or value-initialization instead [-Wclass-memaccess]
  memset(hd, 0, sizeof(*hd));
                           ^
../../../source/lib/res/h_mgr.cpp:132:8: note: 'struct HDATA' declared here
 struct HDATA
        ^~~~~
builderr-release-gcc7.txt
In file included from ../../../source/pch/atlas/precompiled.h:26:
../../../source/tools/atlas/GameInterface/Messages.h: In function 'void AtlasMessage::fGetTerrainGroupPreviews(AtlasMessage::qGetTerrainGroupPreviews*)':
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
 struct sTerrainTexturePreview
        ^~~~~~~~~~~~~~~~~~~~~~
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
 struct sTerrainTexturePreview
        ^~~~~~~~~~~~~~~~~~~~~~
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/lib/res/h_mgr.cpp: In function 'void h_free_hd(HDATA*)':
../../../source/lib/res/h_mgr.cpp:560:27: warning: 'void* memset(void*, int, size_t)' clearing an object of type 'struct HDATA' with no trivial copy-assignment; use assignment or value-initialization instead [-Wclass-memaccess]
  memset(hd, 0, sizeof(*hd));
                           ^
../../../source/lib/res/h_mgr.cpp:132:8: note: 'struct HDATA' declared here
 struct HDATA
        ^~~~~
In file included from ../../../source/lib/os_path.h:26,
                 from ../../../source/lib/self_test.h:28,
                 from ../../../source/simulation2/system/ComponentTest.h:21,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/lib/path.h: In member function 'virtual void TestMapGenerator::setUp()':
../../../source/lib/path.h:265:68: warning: '<anonymous>.Path::separator' may be used uninitialized in this function [-Wmaybe-uninitialized]
   debug_printf("Path %s, separator %c\n", string8().c_str(), (char)separator);
                                                                    ^~~~~~~~~
In file included from ../../../source/lib/os_path.h:26,
                 from ../../../source/lib/self_test.h:28,
                 from ../../../source/simulation2/system/ComponentTest.h:21,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/lib/path.h: In member function 'virtual void TestComponentScripts::setUp()':
../../../source/lib/path.h:265:68: warning: '<anonymous>.Path::separator' may be used uninitialized in this function [-Wmaybe-uninitialized]
   debug_printf("Path %s, separator %c\n", string8().c_str(), (char)separator);
                                                                    ^~~~~~~~~
In file included from ../../../source/lib/os_path.h:26,
                 from ../../../source/lib/self_test.h:28,
                 from ../../../source/simulation2/system/ComponentTest.h:21,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/lib/path.h: In function 'OsPath DataDir()':
../../../source/lib/path.h:265:68: warning: '<anonymous>.Path::separator' may be used uninitialized in this function [-Wmaybe-uninitialized]
   debug_printf("Path %s, separator %c\n", string8().c_str(), (char)separator);
                                                                    ^~~~~~~~~

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

wraitii updated this revision to Diff 14370.Dec 3 2020, 5:37 PM

Fix more no-pch

Vulcan added a comment.Dec 3 2020, 5:39 PM

Build was aborted.

builderr-debug-gcc7.txt
make[1]: *** [network.make:148: obj/network_Debug/NetClientTurnManager.o] Terminated
make: *** [Makefile:77: network] Terminated

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

Stan added inline comments.Dec 3 2020, 5:42 PM
source/gui/CGUI.cpp
168 ↗(On Diff #14370)

You said you had something to go back to value types

source/lib/file/file_system.cpp
30 ↗(On Diff #14370)

reorder

wraitii added inline comments.Dec 3 2020, 5:48 PM
source/gui/CGUI.cpp
168 ↗(On Diff #14370)

I think I elected to not do that (yet?) after all. There are other cases of those owning unique_ptr (in the pathfinder), and I think we need a wrapping type.

I _could_ use a reference, but then I'd have to manually delete the pointer & it must be initialised in the constructor init-list. It's probably better to create a custom wrapper, in a separate diff.

wraitii updated this revision to Diff 14371.Dec 3 2020, 5:53 PM

More fixes (this one was weird)

wraitii updated this revision to Diff 14372.Dec 3 2020, 6:10 PM

Maybe account for <cstring>

wraitii updated this revision to Diff 14470.Dec 8 2020, 4:21 PM

Rebase once more.

Stan added a comment.Dec 8 2020, 5:37 PM

Need vector in ICmpObstructionManager.h
Need vector in ICmpAttack.h
Need vector in ICmpCommandQueue.h
Need vector in ICmpTerritoryManager.h
Need vector inICmpUnitRenderer.h

Need ctime in vfs_tree.cpp
Need ctime in wtime.cpp
Need ctime in JSInterface_Debug.cpp
Need ctime in waio.cpp

source/simulation2/helpers/VertexPathfinder.h
25 ↗(On Diff #14470)
Vulcan added a comment.Dec 8 2020, 6:13 PM

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(vfs_path.o) has no symbols
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/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/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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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//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//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//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/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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork.a(precompiled.o) has no symbols
/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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2.a(precompiled.o) has no symbols
/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/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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas.a(precompiled.o) has no symbols
/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.
/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//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//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//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//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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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//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//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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/2329/display/redirect

wraitii updated this revision to Diff 14471.Dec 8 2020, 6:44 PM
This comment was removed by wraitii.
Owners added a subscriber: Restricted Owners Package.Dec 8 2020, 6:44 PM
wraitii updated this revision to Diff 14473.Dec 8 2020, 6:53 PM

Correct rebased + Stan's comments

Vulcan added a comment.Dec 8 2020, 7:09 PM

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

builderr-debug-macos.txt
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;
                            ^
2 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.
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//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/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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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//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//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/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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork.a(precompiled.o) has no symbols
/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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2.a(precompiled.o) has no symbols
/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/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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas.a(precompiled.o) has no symbols
/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.
/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//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//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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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//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//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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/2330/display/redirect

Vulcan added a comment.Dec 8 2020, 7:50 PM

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(vfs_path.o) has no symbols
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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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//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/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//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//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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork.a(precompiled.o) has no symbols
/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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2.a(precompiled.o) has no symbols
/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/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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas.a(precompiled.o) has no symbols
/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.
/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//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//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//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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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//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//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//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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/2332/display/redirect

Vulcan added a comment.Dec 8 2020, 8:04 PM

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

builderr-release-gcc7.txt
In file included from ../../../source/pch/atlas/precompiled.h:26:
../../../source/tools/atlas/GameInterface/Messages.h: In function 'void AtlasMessage::fGetTerrainGroupPreviews(AtlasMessage::qGetTerrainGroupPreviews*)':
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
 struct sTerrainTexturePreview
        ^~~~~~~~~~~~~~~~~~~~~~
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
 struct sTerrainTexturePreview
        ^~~~~~~~~~~~~~~~~~~~~~
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
../../../source/tools/atlas/GameInterface/Messages.h:310:8: warning: '#'target_mem_ref' not supported by dump_expr#<expression error>' may be used uninitialized in this function [-Wmaybe-uninitialized]
In file included from ../../../source/lib/os_path.h:26,
                 from ../../../source/lib/self_test.h:28,
                 from ../../../source/simulation2/system/ComponentTest.h:21,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/lib/path.h: In member function 'virtual void TestMapGenerator::setUp()':
../../../source/lib/path.h:264:68: warning: '<anonymous>.Path::separator' may be used uninitialized in this function [-Wmaybe-uninitialized]
   debug_printf("Path %s, separator %c\n", string8().c_str(), (char)separator);
                                                                    ^~~~~~~~~
In file included from ../../../source/lib/os_path.h:26,
                 from ../../../source/lib/self_test.h:28,
                 from ../../../source/simulation2/system/ComponentTest.h:21,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/lib/path.h: In member function 'virtual void TestComponentScripts::setUp()':
../../../source/lib/path.h:264:68: warning: '<anonymous>.Path::separator' may be used uninitialized in this function [-Wmaybe-uninitialized]
   debug_printf("Path %s, separator %c\n", string8().c_str(), (char)separator);
                                                                    ^~~~~~~~~
In file included from ../../../source/lib/os_path.h:26,
                 from ../../../source/lib/self_test.h:28,
                 from ../../../source/simulation2/system/ComponentTest.h:21,
                 from ../../../source/pch/test/precompiled.h:22:
../../../source/lib/path.h: In function 'OsPath DataDir()':
../../../source/lib/path.h:264:68: warning: '<anonymous>.Path::separator' may be used uninitialized in this function [-Wmaybe-uninitialized]
   debug_printf("Path %s, separator %c\n", string8().c_str(), (char)separator);
                                                                    ^~~~~~~~~

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

Stan added a comment.Dec 8 2020, 8:22 PM

Building with Clang 10.0.0.4 on linux

Need algorithm in CVector3D.cpp
Need string.h (this is very strange) in Shareable.h https://stackoverflow.com/questions/2283712/what-header-should-i-include-for-memcpy-and-realloc (should we use std::copy and cstdio or use std::memcpy) ?

In file included from ../../../source/tools/atlas/GameInterface/ActorViewer.cpp:22:
In file included from ../../../source/tools/atlas/GameInterface/View.h:25:
In file included from ../../../source/tools/atlas/GameInterface/Messages.h:22:
In file included from ../../../source/tools/atlas/GameInterface/MessagesSetup.h:24:
In file included from ../../../source/tools/atlas/GameInterface/SharedTypes.h:21:
../../../source/tools/atlas/GameInterface/Shareable.h:153:3: error: call to function 'memcpy' that is neither visible in the template definition nor found by argument-dependent lookup
                memcpy(buf, rhs.c_str(), sizeof(C)*length);
                ^
../../../source/tools/atlas/GameInterface/SharedTypes.h:116:43: note: in instantiation of member function 'AtlasMessage::Shareable<std::__cxx11::basic_string<wchar_t> >::Shareable' requested here
        sCinemaPath(const std::wstring& _name) : name(_name), mode(0), style(0), change(0), growth(0), duration(0), timescale(1) {}
                                                 ^
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:31:8: note: 'memcpy' should be declared prior to the call site
__NTH (memcpy (void *__restrict __dest, const void *__restrict __src,

needs string.h & string dynarray.cpp

1 warning generated.
../../../source/lib/allocators/dynarray.cpp:87:2: error: use of undeclared identifier 'memset'; did you mean 'wmemset'?
        memset(da, 0, sizeof(*da));
        ^~~~~~
        wmemset                                                                                                                                                                                                   
/usr/include/x86_64-linux-gnu/bits/wchar2.h:129:8: note: 'wmemset' declared here
__NTH (wmemset (wchar_t *__s, wchar_t __c, size_t __n))
       ^
../../../source/lib/allocators/dynarray.cpp:87:9: error: cannot initialize a parameter of type 'wchar_t *' with an lvalue of type 'DynArray *'
        memset(da, 0, sizeof(*da));
               ^~
/usr/include/x86_64-linux-gnu/bits/wchar2.h:129:26: note: passing argument to parameter '__s' here
__NTH (wmemset (wchar_t *__s, wchar_t __c, size_t __n))
                         ^
../../../source/lib/allocators/dynarray.cpp:142:2: error: use of undeclared identifier 'memcpy'; did you mean 'wmemcpy'?
        memcpy(da->base+da->pos, data, size);
        ^~~~~~
        wmemcpy                                                                                                                                                                                                   
/usr/include/x86_64-linux-gnu/bits/wchar2.h:39:8: note: 'wmemcpy' declared here
__NTH (wmemcpy (wchar_t *__restrict __s1, const wchar_t *__restrict __s2,
       ^
../../../source/lib/allocators/dynarray.cpp:142:9: error: cannot initialize a parameter of type 'wchar_t *' with an rvalue of type 'u8 *' (aka 'unsigned char *')
        memcpy(da->base+da->pos, data, size);
               ^~~~~~~~~~~~~~~~

need string.h codec_zlib.cpp

../../../source/lib/file/archive/codec_zlib.cpp:89:3: error: use of undeclared identifier 'memcpy'; did you mean 'wmemcpy'?
                memcpy(out, in, transferSize);
                ^~~~~~
                wmemcpy
/usr/include/x86_64-linux-gnu/bits/wchar2.h:39:8: note: 'wmemcpy' declared here
__NTH (wmemcpy (wchar_t *__restrict __s1, const wchar_t *__restrict __s2,
       ^
../../../source/lib/file/archive/codec_zlib.cpp:89:10: error: cannot initialize a parameter of type 'wchar_t *' with an lvalue of type 'u8 *' (aka 'unsigned char *')
                memcpy(out, in, transferSize);

needs cwctype regex.cpp

../../../source/lib/regex.cpp:52:11: error: use of undeclared identifier 'towupper'; did you mean 'toupper'?
                else if(towupper(wc) == towupper(*s) || wc == '?')
                        ^~~~~~~~
                        toupper
/usr/include/ctype.h:125:12: note: 'toupper' declared here
extern int toupper (int __c) __THROW

need string.h secure_crt.cpp

../../../source/lib/secure_crt.cpp:216:25: error: use of undeclared identifier 'strnlen'
        const size_t dst_len = tnlen(dst, max_dst_chars);
                               ^
../../../source/lib/secure_crt.cpp:77:16: note: expanded from macro 'tnlen'
# define tnlen strnlen

need string.h snd.cpp

../../../source/lib/snd.cpp:60:14: error: use of undeclared identifier 'strlen'
                devices += strlen(devices) + 1;
                           ^

needs algorithm apic.cpp

/usr/bin/../lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/bits/stl_algobase.h:714:11: error: read-only variable is not assignable
        *__first = __tmp;
        ~~~~~~~~ ^
/usr/bin/../lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/bits/stl_algobase.h:749:12: note: in instantiation of function template specialization 'std::__fill_a<const unsigned char *, unsigned char>' requested here
      std::__fill_a(std::__niter_base(__first), std::__niter_base(__last),
           ^
../../../source/lib/sysdep/arch/x86_x64/apic.cpp:125:27: note: in instantiation of function template specialization 'std::fill<const unsigned char *, unsigned char>' requested here
        const ApicId* pos = std::find(apicIds, apicIds+numIds, apicId);
                                 ^
wraitii updated this revision to Diff 14501.Dec 9 2020, 11:32 AM

Fix Stan's remarks. Will run clang on docker-custom, if that passes, I'll assume we're good.

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(vfs_path.o) has no symbols
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//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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/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:587: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/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//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//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: 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.
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//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/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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork.a(precompiled.o) has no symbols
/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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2.a(precompiled.o) has no symbols
/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/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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas.a(precompiled.o) has no symbols
/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.
/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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/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:587: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//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: 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.
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//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//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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/2352/display/redirect

wraitii updated this revision to Diff 14503.Dec 9 2020, 1:37 PM

I think this is the final batch of fixes.

Vulcan added a comment.Dec 9 2020, 1:59 PM

Build was aborted.

builderr-debug-gcc7.txt
../../../source/lib/res/h_mgr.cpp: In function 'void h_free_hd(HDATA*)':
../../../source/lib/res/h_mgr.cpp:560:27: warning: 'void* memset(void*, int, size_t)' clearing an object of type 'struct HDATA' with no trivial copy-assignment; use assignment or value-initialization instead [-Wclass-memaccess]
  memset(hd, 0, sizeof(*hd));
                           ^
../../../source/lib/res/h_mgr.cpp:132:8: note: 'struct HDATA' declared here
 struct HDATA
        ^~~~~
make[1]: *** [AtlasUI.make:261: obj/AtlasUI_Debug/PseudoMiniMapPanel.o] Terminated
make: *** [Makefile:173: AtlasUI] Terminated

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

Vulcan added a comment.Dec 9 2020, 2:00 PM

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

builderr-debug-macos.txt
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libtinygettext_dbg.a(tinygettext.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libscriptinterface_dbg.a(precompiled.o) has no symbols
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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas_dbg.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgui_dbg.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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel_dbg.a(vfs_path.o) has no symbols
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/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//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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/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:587: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//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: 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.
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//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/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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libnetwork.a(precompiled.o) has no symbols
/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
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblobby.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libglooxwrapper.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libsimulation2.a(precompiled.o) has no symbols
/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/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;
                            ^
2 warnings generated.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libengine.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libgraphics.a(precompiled.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/libatlas.a(precompiled.o) has no symbols
/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.
/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//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//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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/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:587: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//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: 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.
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/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//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: object file (../../../libraries/osx/fmt/lib/libfmt.a(format.cc.o)) was built for newer OSX version (10.13) than being linked (10.12)
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/2354/display/redirect

This revision was not accepted when it landed; it landed in state Needs Review.Dec 9 2020, 3:39 PM
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.