Page MenuHomeWildfire Games

Update fmt to the most recent release
ClosedPublic

Authored by s0600204 on Apr 3 2020, 12:56 AM.

Details

Summary

Support the most recent released version of fmt (previously known as cppformat) available.

This revision also de-bundles the source, as we no longer need to modify it to get the library to work with pyrogenesis.

Linux/BSD: Users now need to have fmt installed from their distribution's package repository. Minimum required version of fmt is 4.0.0.

OSX: The source is acquired and compiled (in build-osx-libs.sh), then included and linked automatically,

Windows: The relevant header files are retained and, along with a pre-built library, are to be the only thing bundled.

Test Plan

On Linux/BSD:

  • Make sure fmt (at least version 4.0.0) is installed (e.g. via your distro's package manager).
  • Rebuild pyrogenesis
    • You may need to make clean and clean-workspaces.sh.
  • Report back on successes, fails, and version of fmt used.

On OSX:

  • Run build-osx-libs.sh
  • Rebuild pyrogenesis.
  • Report back successes and fails.

On Windows:

  • Acquire and build the library:
  • Place the built library (fmt.lib) into ./libraries/win32/fmt/lib/
    • Could you also upload a copy of it somewhere online so I can include it in this revision?
  • Follow usual method of building pyrogenesis on Windows

Event Timeline

There are a very large number of changes, so older changes are hidden. Show Older Changes
Stan added a comment.Nov 17 2020, 12:43 AM
This comment was removed by Stan.

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

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

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

builderr-debug-gcc6.txt
In file included from ../../../source/lib/precompiled.h:111:0,
                 from ../../../source/pch/network/precompiled.h:19:
../../../source/ps/CLogger.h:28:24: fatal error: fmt/printf.h: No such file or directory
 #include <fmt/printf.h>
                        ^
compilation terminated.
make[1]: *** [obj/network_Debug/precompiled.h.gch] Error 1
make: *** [network] Error 2

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

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

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

Stan added a comment.EditedNov 17 2020, 1:50 AM

Here are the lib files
compiled with vs2015 xp toolset with the same options as mac, no doc, no test.

I get new warnings after this patch

Severity	Code	Description	Project	File	Line	Suppression State
Warning	LNK4199	/DELAYLOAD:fmt.dll ignored; no imports found from fmt.dll	glooxwrapper	C:\Dev\trunk\build\workspaces\vc2015\LINK	1	
Warning	C4505	'fmt::v7::basic_memory_buffer<wchar_t,500,std::allocator<wchar_t>>::grow': unreferenced local function has been removed	glooxwrapper	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	741	
Warning	C4505	'fmt::v7::basic_memory_buffer<wchar_t,500,std::allocator<wchar_t>>::grow': unreferenced local function has been removed	engine	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	741	
Warning	C4505	'fmt::v7::basic_memory_buffer<wchar_t,500,std::allocator<wchar_t>>::grow': unreferenced local function has been removed	lobby	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	741	
Warning	C4505	'fmt::v7::basic_memory_buffer<wchar_t,500,std::allocator<wchar_t>>::grow': unreferenced local function has been removed	lowlevel	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	741	
Warning	C4505	'fmt::v7::basic_memory_buffer<wchar_t,500,std::allocator<wchar_t>>::grow': unreferenced local function has been removed	graphics	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	741	
Warning	C4505	'fmt::v7::basic_memory_buffer<wchar_t,500,std::allocator<wchar_t>>::grow': unreferenced local function has been removed	network	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	741	
Warning	C4505	'fmt::v7::basic_memory_buffer<wchar_t,500,std::allocator<wchar_t>>::grow': unreferenced local function has been removed	scriptinterface	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	741	
Warning	C4505	'fmt::v7::basic_memory_buffer<wchar_t,500,std::allocator<wchar_t>>::grow': unreferenced local function has been removed	tinygettext	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	741	
Warning	C4459	declaration of 'prefix' hides global declaration (compiling source file ..\..\..\source\ps\DllLoader.cpp)	engine	c:\dev\trunk\libraries\win32\fmt\include\fmt\format.h	1543	
Warning	LNK4199	/DELAYLOAD:fmt.dll ignored; no imports found from fmt.dll	pyrogenesis	C:\Dev\trunk\build\workspaces\vc2015\LINK	1

Premake options

--atlas --build-shared-glooxwrapper --large-address-aware vs2015

Works fine in release and debug mode.

EDIT:

MacOS seems to fail too

n file included from /Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/fmt/fmt-7.1.2/src/os.cc:13:

/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/fmt/fmt-7.1.2/include/fmt/os.h:378:38: error: default initialization of an object of const type 'const detail::buffer_size' without a user-provided default constructor

static constexpr detail::buffer_size buffer_size;
build/premake/premake5.lua
611

you missed "fmt" here :)

s0600204 updated this revision to Diff 13978.Nov 17 2020, 2:20 AM
s0600204 edited the test plan for this revision. (Show Details)
  • Include the Windows lib files @Stan built;
  • Attempt to fix MacOS compilation;
s0600204 added a comment.EditedNov 17 2020, 2:20 AM
In D2689#136708, @Stan wrote:

Here are the lib files

Thanks.

Question: Any insights into why the Jenkins Windows slave is now failing where it is? (Earlier versions of this Revision at least got past the "Patch" stage...)

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

builderr-debug-gcc6.txt
In file included from ../../../source/lib/precompiled.h:111:0,
                 from ../../../source/pch/network/precompiled.h:19:
../../../source/ps/CLogger.h:28:24: fatal error: fmt/printf.h: No such file or directory
 #include <fmt/printf.h>
                        ^
compilation terminated.
make[1]: *** [obj/network_Debug/precompiled.h.gch] Error 1
make: *** [network] Error 2

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

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

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

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

builderr-debug-macos.txt
In file included from ../../../source/rlinterface/RLInterface.cpp:28:
../../../source/ps/CLogger.h:28:10: fatal error: 'fmt/printf.h' file not found
#include <fmt/printf.h>
         ^
1 error generated.
make[1]: *** [obj/rlinterface_Debug/RLInterface.o] Error 1
make: *** [rlinterface] Error 2

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

s0600204 updated this revision to Diff 13979.Nov 17 2020, 3:20 AM

Add fmt to rlinterface's build-time lib includes

s0600204 marked an inline comment as done.Nov 17 2020, 3:21 AM

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

builderr-debug-gcc6.txt
In file included from ../../../source/lib/precompiled.h:111:0,
                 from ../../../source/pch/network/precompiled.h:19:
../../../source/ps/CLogger.h:28:24: fatal error: fmt/printf.h: No such file or directory
 #include <fmt/printf.h>
                        ^
compilation terminated.
make[1]: *** [obj/network_Debug/precompiled.h.gch] Error 1
make: *** [network] Error 2

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

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

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

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

builderr-debug-macos.txt
../../../source/simulation2/scripting/JSInterface_Simulation.cpp:152:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CFixedVector2D(-halfSize.X, -halfSize.Y),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
In file included from ../../../libraries/osx/fmt/include/fmt/printf.h:14:
In file included from ../../../libraries/osx/fmt/include/fmt/ostream.h:13:
In file included from ../../../libraries/osx/fmt/include/fmt/format.h:44:
../../../libraries/osx/fmt/include/fmt/core.h:1421:27: error: expected unqualified-id
template <typename T> int check(unformattable) {
                          ^
/usr/include/AssertMacros.h:1291:28: note: expanded from macro 'check'
        #define check(assertion)  __Check(assertion)
                                  ^
/usr/include/AssertMacros.h:280:5: note: expanded from macro '__Check'
                  do                                                                      \
                  ^
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
In file included from ../../../libraries/osx/fmt/include/fmt/printf.h:14:
In file included from ../../../libraries/osx/fmt/include/fmt/ostream.h:13:
In file included from ../../../libraries/osx/fmt/include/fmt/format.h:44:
../../../libraries/osx/fmt/include/fmt/core.h:1449:8: error: no template named 'is_reference_wrapper'; did you mean 'std::__is_reference_wrapper'?
struct is_reference_wrapper<std::reference_wrapper<T>> : std::true_type {};
       ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base:561:29: note: 'std::__is_reference_wrapper' declared here
template <class _Tp> struct __is_reference_wrapper
                            ^
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
In file included from ../../../libraries/osx/fmt/include/fmt/printf.h:14:
In file included from ../../../libraries/osx/fmt/include/fmt/ostream.h:13:
In file included from ../../../libraries/osx/fmt/include/fmt/format.h:44:
../../../libraries/osx/fmt/include/fmt/core.h:1449:8: error: class template partial specialization of '__is_reference_wrapper' not in a namespace enclosing '__1'
struct is_reference_wrapper<std::reference_wrapper<T>> : std::true_type {};
       ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base:561:29: note: explicitly specialized declaration is here
template <class _Tp> struct __is_reference_wrapper
                            ^
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
In file included from ../../../libraries/osx/fmt/include/fmt/printf.h:14:
In file included from ../../../libraries/osx/fmt/include/fmt/ostream.h:13:
In file included from ../../../libraries/osx/fmt/include/fmt/format.h:44:
../../../libraries/osx/fmt/include/fmt/core.h:1670:46: error: 'T' does not refer to a value
      value = !(detail::is_reference_wrapper<T>::value ||
                                             ^
../../../libraries/osx/fmt/include/fmt/core.h:1665:22: note: declared here
  template <typename T> struct need_copy {
                     ^
../../../libraries/osx/fmt/include/fmt/core.h:1670:25: error: no member named 'is_reference_wrapper' in namespace 'fmt::v7::detail'
      value = !(detail::is_reference_wrapper<T>::value ||
                ~~~~~~~~^
../../../libraries/osx/fmt/include/fmt/core.h:1670:48: error: no member named 'value' in the global namespace; did you mean 'std::money_base::value'?
      value = !(detail::is_reference_wrapper<T>::value ||
                                               ^~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/locale:2731:43: note: 'std::money_base::value' declared here
    enum part {none, space, symbol, sign, value};
                                          ^
6 errors generated.
make[1]: *** [obj/lowlevel_Debug/dir_watch.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make: *** [lowlevel] Error 2

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

Stan added a subscriber: wraitii.Nov 17 2020, 9:07 AM

Question: Any insights into why the Jenkins Windows slave is now failing where it is? (Earlier versions of this Revision at least got past the "Patch" stage...)

Yeah @wraitii broke it yesterday and is currently trying to fix it;

You might also want to edit build/jenkins/dockerfiles/gcc6.Dockerfile. Won't fix the Linux CI though.

s0600204 added a comment.EditedNov 17 2020, 10:56 AM
In D2689#136725, @Stan wrote:

You might also want to edit build/jenkins/dockerfiles/gcc6.Dockerfile.

Done (I'll upload later), and thanks for the hint.


I think the most recent MacOS failures are beyond my comprehension. The failure before that appears to have been a... (well 'compiler bug' might not be the correct term) ...problem that looks like it might alternatively have been resolved by using a more recent version of Clang. I can't seem to find mention of minimum required compiler versions required for fmt (beyond a requirement to support C++11). The fmt project has its own CI, but the earliest version of Clang it tests is version 9 (on Linux - fmt's MacOS CI uses (AppleClang) 12).

My point is that the current MacOS failures might be resolved by using a more recent version of Clang. Or they might not. I've no way of testing that. Either way, the MacOS build errors reported by our CI are beyond me to fix. Sorry.

My point is that the current MacOS failures might be resolved by using a more recent version of Clang. Or they might not. I've no way of testing that. Either way, the MacOS build errors reported by our CI are beyond me to fix. Sorry.

I'll give it a shot

The latest diff compiled fine on my Xcode 10.2.1 / MacOS 10.14 machine. I'm not sure what the CI runs, but probably something (much?) earlier.

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

builderr-debug-macos.txt
In file included from ../../../source/network/NetHost.cpp:In file included from 23../../../source/network/NetClientTurnManager.cppIn file included from :
../../../source/network/NetFileTransfer.cpp:In file included from ../../../source/network/NetMessage.hIn file included from ../../../source/network/NetClient.cpp:20::
23:20In file included from :
:
../../../source/network/NetClientTurnManager.h26:
:In file included from In file included from 21:
../../../source/network/NetClient.h../../../source/network/NetMessages.h:In file included from In file included from :../../../source/simulation2/system/TurnManager.h2427:
:
:In file included from 22:
../../../source/scriptinterface/ScriptInterface.h../../../source/network/NetMessage.hIn file included from ::2625:
../../../source/simulation2/helpers/SimulationCommand.h::
../../../source/scriptinterface/ScriptTypes.h:../../../source/scriptinterface/ScriptTypes.h21:75:
75:2:In file included from : In file included from ../../../source/network/NetMessages.herror../../../source/scriptinterface/ScriptInterface.h::2527:
2:
: ../../../source/scriptinterface/ScriptTypes.hYour compiler is trying to use an incorrect major version of the SpiderMonkey library. The only version that works is the one in the libraries/spidermonkey/ directory, and it will not work with a typical system-installed version. Make sure you have got all the right files and include paths.:75::../../../source/scriptinterface/ScriptTypes.h
 error: Your compiler is trying to use an incorrect major version of the SpiderMonkey library. The only version that works is the one in the libraries/spidermonkey/ directory, and it will not work with a typical system-installed version. Make sure you have got all the right files and include paths.
#error Your compiler is trying to use an incorrect major version of the \
 ^
#error Your compiler is trying to use an incorrect major version of the \
 ^
../../../source/scriptinterface/ScriptTypes.h:83:../../../source/scriptinterface/ScriptTypes.h:283:::275 error:2:2: Your compiler is trying to use an untested minor version of the SpiderMonkey library. If you are a package maintainer, please make sure to check very carefully that this version does not change the behaviour of the code executed by SpiderMonkey. Different parts of the game (e.g. the multiplayer mode) rely on deterministic behaviour of the JavaScript engine. A simple way for testing this would be playing a network game with one player using the old version and one player using the new version. Another way for testing is running replays and comparing the final hash (check trac.wildfiregames.com/wiki/Debugging#Replaymode). For more information check this link: trac.wildfiregames.com/wiki/Debugging#Outofsync::  error: 
Your compiler is trying to use an untested minor version of the SpiderMonkey library. If you are a package maintainer, please make sure to check very carefully that this version does not change the behaviour of the code executed by SpiderMonkey. Different parts of the game (e.g. the multiplayer mode) rely on deterministic behaviour of the JavaScript engine. A simple way for testing this would be playing a network game with one player using the old version and one player using the new version. Another way for testing is running replays and comparing the final hash (check trac.wildfiregames.com/wiki/Debugging#Replaymode). For more information check this link: trac.wildfiregames.com/wiki/Debugging#Outofsync
#error Your compiler is trying to use an untested minor version of the \
#error Your compiler is trying to use an untested minor version of the \error 
: Your compiler is trying to use an incorrect major version of the SpiderMonkey library. The only version that works is the one in the libraries/spidermonkey/ directory, and it will not work with a typical system-installed version. Make sure you have got all the right files and include paths.error: 
 ^Your compiler is trying to use an incorrect major version of the SpiderMonkey library. The only version that works is the one in the libraries/spidermonkey/ directory, and it will not work with a typical system-installed version. Make sure you have got all the right files and include paths.

#error Your compiler is trying to use an incorrect major version of the \
 ^
#error Your compiler is trying to use an incorrect major version of the \../../../source/scriptinterface/ScriptTypes.h:
 ^83: ^
2: error: Your compiler is trying to use an untested minor version of the SpiderMonkey library. If you are a package maintainer, please make sure to check very carefully that this version does not change the behaviour of the code executed by SpiderMonkey. Different parts of the game (e.g. the multiplayer mode) rely on deterministic behaviour of the JavaScript engine. A simple way for testing this would be playing a network game with one player using the old version and one player using the new version. Another way for testing is running replays and comparing the final hash (check trac.wildfiregames.com/wiki/Debugging#Replaymode). For more information check this link: trac.wildfiregames.com/wiki/Debugging#Outofsync
#error Your compiler is trying to use an untested minor version of the \
 ^

../../../source/scriptinterface/ScriptTypes.h:83:2: error: Your compiler is trying to use an untested minor version of the SpiderMonkey library. If you are a package maintainer, please make sure to check very carefully that this version does not change the behaviour of the code executed by SpiderMonkey. Different parts of the game (e.g. the multiplayer mode) rely on deterministic behaviour of the JavaScript engine. A simple way for testing this would be playing a network game with one player using the old version and one player using the new version. Another way for testing is running replays and comparing the final hash (check trac.wildfiregames.com/wiki/Debugging#Replaymode). For more information check this link: trac.wildfiregames.com/wiki/Debugging#Outofsync
#error Your compiler is trying to use an untested minor version of the \
 ^
2 errors generated.
make[1]: *** [obj/network_Debug/NetHost.o] Error 1
make[1]: *** Waiting for unfinished jobs....
2 errors generated.
make[1]: *** [obj/network_Debug/NetFileTransfer.o] Error 1
../../../source/network/NetClient.cpp:83:2: error: no matching function for call to 'JS_AddExtraGCRootsTracer'
        JS_AddExtraGCRootsTracer(GetScriptInterface().GetJSRuntime(), CNetClient::Trace, this);
        ^~~~~~~~~~~~~~~~~~~~~~~~
../../../libraries/source/spidermonkey/include-unix-debug/jsapi.h:1610:1: note: candidate function not viable: cannot convert argument of incomplete type 'JSRuntime *' to 'JSContext *'
JS_AddExtraGCRootsTracer(JSContext* cx, JSTraceDataOp traceOp, void* data);
^
../../../source/network/NetClient.cpp:147:2: error: no matching function for call to 'JS_RemoveExtraGCRootsTracer'
        JS_RemoveExtraGCRootsTracer(GetScriptInterface().GetJSRuntime(), CNetClient::Trace, this);
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../libraries/source/spidermonkey/include-unix-debug/jsapi.h:1614:1: note: candidate function not viable: cannot convert argument of incomplete type 'JSRuntime *' to 'JSContext *'
JS_RemoveExtraGCRootsTracer(JSContext* cx, JSTraceDataOp traceOp, void* data);
^
2 errors generated.
make[1]: *** [obj/network_Debug/NetClientTurnManager.o] Error 1
In file included from ../../../source/network/NetClient.cpp:20:
In file included from ../../../source/network/NetClient.h:24:
In file included from ../../../source/scriptinterface/ScriptInterface.h:25:
In file included from ../../../source/scriptinterface/ScriptTypes.h:61:
In file included from ../../../libraries/source/spidermonkey/include-unix-debug/jsapi.h:29:
In file included from ../../../libraries/source/spidermonkey/include-unix-debug/js/CallArgs.h:73:
../../../libraries/source/spidermonkey/include-unix-debug/js/RootingAPI.h:1111:31: error: no matching member function for call to 'rootLists'
        registerWithRootLists(rootLists(cx));
                              ^~~~~~~~~
../../../source/network/NetClient.cpp:74:2: note: in instantiation of function template specialization 'JS::PersistentRooted<JS::Value>::PersistentRooted<JSRuntime *>' requested here
        m_GameAttributes(game->GetSimulation2()->GetScriptInterface().GetJSRuntime()),
        ^
../../../libraries/source/spidermonkey/include-unix-debug/js/RootingAPI.h:1093:20: note: candidate function not viable: cannot convert argument of incomplete type 'JSRuntime *const' to 'JSContext *'
    js::RootLists& rootLists(JSContext* cx) {
                   ^
../../../libraries/source/spidermonkey/include-unix-debug/js/RootingAPI.h:1096:20: note: candidate function not viable: cannot convert argument of incomplete type 'JSRuntime *const' to 'JS::RootingContext *'
    js::RootLists& rootLists(JS::RootingContext* cx) {
                   ^
../../../libraries/source/spidermonkey/include-unix-debug/js/RootingAPI.h:1102:20: note: candidate function not viable: cannot convert argument of incomplete type 'JSRuntime *const' to 'js::ContextFriendFields *'
    js::RootLists& rootLists(js::ContextFriendFields* cx) = delete;
                   ^
5 errors generated.
make[1]: *** [obj/network_Debug/NetClient.o] Error 1
make: *** [network] Error 2

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

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

builderr-debug-macos.txt
../../../source/simulation2/scripting/JSInterface_Simulation.cpp:152:4: warning: suggest braces around initialization of subobject [-Wmissing-braces]
                        CFixedVector2D(-halfSize.X, -halfSize.Y),
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
In file included from ../../../libraries/osx/fmt/include/fmt/printf.h:14:
In file included from ../../../libraries/osx/fmt/include/fmt/ostream.h:13:
In file included from ../../../libraries/osx/fmt/include/fmt/format.h:44:
../../../libraries/osx/fmt/include/fmt/core.h:1421:27: error: expected unqualified-id
template <typename T> int check(unformattable) {
                          ^
/usr/include/AssertMacros.h:1291:28: note: expanded from macro 'check'
        #define check(assertion)  __Check(assertion)
                                  ^
/usr/include/AssertMacros.h:280:5: note: expanded from macro '__Check'
                  do                                                                      \
                  ^
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
In file included from ../../../libraries/osx/fmt/include/fmt/printf.h:14:
In file included from ../../../libraries/osx/fmt/include/fmt/ostream.h:13:
In file included from ../../../libraries/osx/fmt/include/fmt/format.h:44:
../../../libraries/osx/fmt/include/fmt/core.h:1449:8: error: no template named 'is_reference_wrapper'; did you mean 'std::__is_reference_wrapper'?
struct is_reference_wrapper<std::reference_wrapper<T>> : std::true_type {};
       ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base:561:29: note: 'std::__is_reference_wrapper' declared here
template <class _Tp> struct __is_reference_wrapper
                            ^
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
In file included from ../../../libraries/osx/fmt/include/fmt/printf.h:14:
In file included from ../../../libraries/osx/fmt/include/fmt/ostream.h:13:
In file included from ../../../libraries/osx/fmt/include/fmt/format.h:44:
../../../libraries/osx/fmt/include/fmt/core.h:1449:8: error: class template partial specialization of '__is_reference_wrapper' not in a namespace enclosing '__1'
struct is_reference_wrapper<std::reference_wrapper<T>> : std::true_type {};
       ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base:561:29: note: explicitly specialized declaration is here
template <class _Tp> struct __is_reference_wrapper
                            ^
In file included from ../../../source/lib/sysdep/os/osx/dir_watch.cpp:38:
In file included from ../../../source/ps/CLogger.h:28:
In file included from ../../../libraries/osx/fmt/include/fmt/printf.h:14:
In file included from ../../../libraries/osx/fmt/include/fmt/ostream.h:13:
In file included from ../../../libraries/osx/fmt/include/fmt/format.h:44:
../../../libraries/osx/fmt/include/fmt/core.h:1670:46: error: 'T' does not refer to a value
      value = !(detail::is_reference_wrapper<T>::value ||
                                             ^
../../../libraries/osx/fmt/include/fmt/core.h:1665:22: note: declared here
  template <typename T> struct need_copy {
                     ^
../../../libraries/osx/fmt/include/fmt/core.h:1670:25: error: no member named 'is_reference_wrapper' in namespace 'fmt::v7::detail'
      value = !(detail::is_reference_wrapper<T>::value ||
                ~~~~~~~~^
../../../libraries/osx/fmt/include/fmt/core.h:1670:48: error: no member named 'value' in the global namespace; did you mean 'std::money_base::value'?
      value = !(detail::is_reference_wrapper<T>::value ||
                                               ^~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/locale:2731:43: note: 'std::money_base::value' declared here
    enum part {none, space, symbol, sign, value};
                                          ^
6 errors generated.
make[1]: *** [obj/lowlevel_Debug/dir_watch.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make: *** [lowlevel] Error 2

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

s0600204 added a comment.EditedNov 17 2020, 3:53 PM

The latest diff compiled fine on my Xcode 10.2.1 / MacOS 10.14 machine. I'm not sure what the CI runs, but probably something (much?) earlier.

According to the build logs, AppleClang 8.0 on OSX 10.11.6. Doesn't seem to mention the XCode version.

And thanks for looking into it.

That's probably clang 5 or something. That being said, it seems to run on the CI, the CI just seems to have decided to randomly die. There's no compilation errors, and it's stopped at different points on successive reruns. I'd say from the Mac OS POV, this looks good to go.

s0600204 updated this revision to Diff 13995.Nov 17 2020, 4:20 PM

Amend gcc6 docker file

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

builderr-debug-gcc6.txt
In file included from ../../../source/lib/precompiled.h:111:0,
                 from ../../../source/pch/network/precompiled.h:19:
../../../source/ps/CLogger.h:28:24: fatal error: fmt/printf.h: No such file or directory
 #include <fmt/printf.h>
                        ^
compilation terminated.
make[1]: *** [obj/network_Debug/precompiled.h.gch] Error 1
make: *** [network] Error 2

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

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

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

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

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

Nescio added a subscriber: Nescio.EditedNov 17 2020, 8:04 PM

Fedora 33 with gcc 10.2.1 and fmt-7.0.3-1.fc33.x86_64. I applied your patch, did a make clean and a clean-workspaces.sh, and ran update-workspaces.sh. However, when attempting to run make, I immediately got the following fatal error:

[gcc]$ make -j7
==== Building mocks_real (release) ====
==== Building network (release) ====
precompiled.h
In file included from ../../../source/lib/precompiled.h:111,
                 from ../../../source/pch/network/precompiled.h:19:
../../../source/ps/CLogger.h:28:10: fatal error: fmt/printf.h: No such file or directory
   28 | #include <fmt/printf.h>
      |          ^~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [network.make:138: obj/network_Release/precompiled.h.gch] Error 1
make: *** [Makefile:77: network] Error 2

[EDIT] After installing fmt-devel (rather than fmt), make did not encounter any errors, and everything seems to work fine.

Stan added a comment.Nov 17 2020, 8:15 PM

You need to install fmt :)

Stan added a comment.Nov 18 2020, 1:38 PM

@wraitii can you install fmt-devel on the CI to test?

We have a minor pickle: our GCC CI runs from the gcc:6 docker image, which is built on Debian 8, and I can't apt-get install fmt on that (there's just no package). It's also no longer on Buster, which ships gcc7 minimum.

We're going to have to drop gcc6 support for SM78, which i'm planning to reach soon-ish, but definitely still a few weeks away.

I can try to install it from source on the CI, or we can commit this diff after the SM78 upgrade. If the latter is OK for you, @s0600204, I'll handle it then. If you think this is problematic for X reasons, feel free to share.

Maybe it has a different name on Debian? E.g. fmt-dev, fmtlib, libfmt.

Maybe it has a different name on Debian? E.g. fmt-dev, fmtlib, libfmt.

No, he's right:

  • Debian 8 ("Jessie") doesn't have fmt
  • Debian 9 ("Stretch", aka "old-stable") has gcc:6, but the version of fmt is too low: 3.0.1 (Package: libfmt3-dev)
  • Debian 10 ("Buster", aka "stable") has a recent enough fmt, but we'd need to drop gcc:6 (Package: libfmt-dev)

I... hadn't realised our CI was using such old versions (of debian, gcc, etc). Darn.

@wraitii: I'm happy to wait.

I've switched the CI to GCC7, might work now

Vulcan requested changes to this revision.Nov 25 2020, 6:09 PM

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

builderr-debug-gcc7.txt
In file included from ../../../source/lib/precompiled.h:111,
                 from ../../../source/pch/network/precompiled.h:19:
../../../source/ps/CLogger.h:28:10: fatal error: fmt/printf.h: No such file or directory
 #include <fmt/printf.h>
          ^~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [network.make:138: obj/network_Debug/precompiled.h.gch] Error 1
make: *** [Makefile:77: network] Error 2

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

This revision now requires changes to proceed.Nov 25 2020, 6:09 PM

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

builderr-debug-gcc7.txt
../../../source/ps/FileIo.cpp:89:36: error: 'CStr' does not name a type; did you mean 'CStr8'?
 void CFilePacker::PackString(const CStr& str)
                                    ^~~~
                                    CStr8
../../../source/ps/FileIo.cpp:89:6: error: no declaration matches 'void CFilePacker::PackString(const int&)'
 void CFilePacker::PackString(const CStr& str)
      ^~~~~~~~~~~
In file included from ../../../source/ps/FileIo.cpp:24:
../../../source/ps/FileIo.h:88:7: note: candidate is: 'void CFilePacker::PackString(const CStr8&)'
  void PackString(const CStr8& str);
       ^~~~~~~~~~
../../../source/ps/FileIo.h:54:7: note: 'class CFilePacker' defined here
 class CFilePacker
       ^~~~~~~~~~~
../../../source/ps/FileIo.cpp: In member function 'void CFileUnpacker::UnpackString(CStr8&)':
../../../source/ps/FileIo.cpp:178:11: error: 'CStr' was not declared in this scope
  result = CStr((char*)m_buf.get()+m_unpackPos, length);
           ^~~~
../../../source/ps/FileIo.cpp:178:11: note: suggested alternative: 'CStr8'
  result = CStr((char*)m_buf.get()+m_unpackPos, length);
           ^~~~
           CStr8
make[1]: *** [engine.make:300: obj/engine_Debug/FileIo.o] Error 1
make: *** [Makefile:119: engine] Error 2

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

Stan added a comment.Nov 25 2020, 11:17 PM

I'm launching another build to check if the VM updates fixed it. You might want to rebase this.

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

builderr-debug-gcc7.txt
../../../source/ps/FileIo.cpp:89:36: error: 'CStr' does not name a type; did you mean 'CStr8'?
 void CFilePacker::PackString(const CStr& str)
                                    ^~~~
                                    CStr8
../../../source/ps/FileIo.cpp:89:6: error: no declaration matches 'void CFilePacker::PackString(const int&)'
 void CFilePacker::PackString(const CStr& str)
      ^~~~~~~~~~~
In file included from ../../../source/ps/FileIo.cpp:24:
../../../source/ps/FileIo.h:88:7: note: candidate is: 'void CFilePacker::PackString(const CStr8&)'
  void PackString(const CStr8& str);
       ^~~~~~~~~~
../../../source/ps/FileIo.h:54:7: note: 'class CFilePacker' defined here
 class CFilePacker
       ^~~~~~~~~~~
../../../source/ps/FileIo.cpp: In member function 'void CFileUnpacker::UnpackString(CStr8&)':
../../../source/ps/FileIo.cpp:178:11: error: 'CStr' was not declared in this scope
  result = CStr((char*)m_buf.get()+m_unpackPos, length);
           ^~~~
../../../source/ps/FileIo.cpp:178:11: note: suggested alternative: 'CStr8'
  result = CStr((char*)m_buf.get()+m_unpackPos, length);
           ^~~~
           CStr8
make[1]: *** [engine.make:300: obj/engine_Debug/FileIo.o] Error 1
make: *** [Makefile:119: engine] Error 2

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

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

builderr-debug-macos.txt
../../../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);
                ^~~~~~~~~~~ ~~~~~~~~
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
3 warnings generated.
../../../source/ps/FileIo.cpp:89:36: error: unknown type name 'CStr'; did you mean 'CStr8'?
void CFilePacker::PackString(const CStr& str)
                                   ^~~~
                                   CStr8
../../../source/ps/FileIo.h:38:7: note: 'CStr8' declared here
class CStr8;
      ^
../../../source/ps/FileIo.cpp:91:27: error: member access into incomplete type 'const CStr8'
        const size_t length = str.length();
                                 ^
../../../source/ps/Filesystem.h:28:7: note: forward declaration of 'CStr8'
class CStr8;
      ^
../../../source/ps/FileIo.cpp:93:13: error: member access into incomplete type 'const CStr8'
        PackRaw(str.c_str(), length);
                   ^
../../../source/ps/Filesystem.h:28:7: note: forward declaration of 'CStr8'
class CStr8;
      ^
../../../source/ps/FileIo.cpp:178:11: error: use of undeclared identifier 'CStr'
        result = CStr((char*)m_buf.get()+m_unpackPos, length);
                 ^
4 errors generated.
make[1]: *** [obj/engine_Debug/FileIo.o] Error 1
make[1]: *** Waiting for unfinished jobs....
../../../source/ps/Filesystem.cpp:152:1: error: unknown type name 'CStr'; did you mean 'CStr8'?
CStr CVFSFile::GetAsString() const
^~~~
CStr8
../../../source/ps/Filesystem.h:28:7: note: 'CStr8' declared here
class CStr8;
      ^
../../../source/ps/Filesystem.cpp:152:16: error: incomplete result type 'CStr8' in function definition
CStr CVFSFile::GetAsString() const
               ^
../../../source/ps/Filesystem.h:28:7: note: forward declaration of 'CStr8'
class CStr8;
      ^
../../../source/ps/Filesystem.cpp:154:9: error: no viable conversion from 'std::string' (aka 'basic_string<char, char_traits<char>, allocator<char> >') to incomplete type 'CStr8'
        return std::string((char*)GetBuffer(), GetBufferSize());
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/Filesystem.h:28:7: note: forward declaration of 'CStr8'
class CStr8;
      ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/string:823:5: note: candidate function
    operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); }
    ^
../../../source/ps/Filesystem.cpp:157:1: error: unknown type name 'CStr'; did you mean 'CStr8'?
CStr CVFSFile::DecodeUTF8() const
^~~~
CStr8
../../../source/ps/Filesystem.h:28:7: note: 'CStr8' declared here
class CStr8;
      ^
../../../source/ps/Filesystem.cpp:157:16: error: incomplete result type 'CStr8' in function definition
CStr CVFSFile::DecodeUTF8() const
               ^
../../../source/ps/Filesystem.h:28:7: note: forward declaration of 'CStr8'
class CStr8;
      ^
../../../source/ps/Filesystem.cpp:164:10: error: no viable conversion from 'std::string' (aka 'basic_string<char, char_traits<char>, allocator<char> >') to incomplete type 'CStr8'
                return std::string(&buffer[3], buffer + GetBufferSize());
                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/Filesystem.h:28:7: note: forward declaration of 'CStr8'
class CStr8;
      ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/string:823:5: note: candidate function
    operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); }
    ^
../../../source/ps/Filesystem.cpp:168:10: error: no viable conversion from 'std::string' (aka 'basic_string<char, char_traits<char>, allocator<char> >') to incomplete type 'CStr8'
                return std::string(buffer, buffer + GetBufferSize());
                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/Filesystem.h:28:7: note: forward declaration of 'CStr8'
class CStr8;
      ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/string:823:5: note: candidate function
    operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); }
    ^
7 errors generated.
make[1]: *** [obj/engine_Debug/Filesystem.o] Error 1
make: *** [engine] Error 2

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

s0600204 updated this revision to Diff 14199.Nov 26 2020, 6:31 AM
s0600204 edited the summary of this revision. (Show Details)
In D2689#138538, @Stan wrote:

You might want to rebase this.

Done; along with an update to take into account rP24227.

Owners added a subscriber: Restricted Owners Package.Nov 26 2020, 6:31 AM

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

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

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

builderr-debug-gcc7.txt
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 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:486,
                 from ../../../source/gui/GUIManager.h:25,
                 from ../../../source/ps/Game.cpp:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp: In function 'void GUI_DisplayLoadProgress(int, const wchar_t*)':
../../../source/ps/GameSetup/GameSetup.cpp:191:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Value; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(JS::NumberValue(percent));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Rooted<JS::Value>&; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(valPendingTask);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/graphics/MapReader.h:27,
                 from ../../../source/ps/GameSetup/GameSetup.cpp:34:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CStrW}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 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:486,
                 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:486,
                 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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 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:486,
                 from ../../../source/gui/GUIManager.h:25,
                 from ../../../source/ps/Game.cpp:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp: In function 'void GUI_DisplayLoadProgress(int, const wchar_t*)':
../../../source/ps/GameSetup/GameSetup.cpp:191:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Value; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(JS::NumberValue(percent));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Rooted<JS::Value>&; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(valPendingTask);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/graphics/MapReader.h:27,
                 from ../../../source/ps/GameSetup/GameSetup.cpp:34:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CStrW}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 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:486,
                 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:486,
                 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/3784/display/redirect

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

builderr-debug-macos.txt
../../../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);
                ^~~~~~~~~~~ ~~~~~~~~
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
2 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;
                            ^
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~
1 warning 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
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//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Security.framework/Security.tbd and library file /System/Library/Frameworks//Security.framework/Security are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenAL.framework/OpenAL.tbd and library file /System/Library/Frameworks//OpenAL.framework/OpenAL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/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.9)
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
In file included from ../../../source/tools/atlas/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//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//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/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxStringToStringHashMap_wxImplementation_HashTable::clear()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxStringToStringHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxStringToNumHashMap_wxImplementation_HashTable::clear()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxStringToNumHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxCompositeWindow<wxSpinCtrlBase>::wxCompositeWindow()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxCompositeWindow<wxSpinCtrlBase>::OnWindowCreate(wxWindowCreateEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
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//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/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.9)
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
../../../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);
                ^~~~~~~~~~~ ~~~~~~~~
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
3 warnings 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/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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
2 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;
                            ^
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
../../../source/gui/GUIManager.cpp:258:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(argVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~
1 warning 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~
2 warnings generated.
/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
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
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//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//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.9)
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
In file included from ../../../source/tools/atlas/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//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//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//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//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.9)
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/2126/display/redirect

wraitii accepted this revision.Nov 26 2020, 8:27 AM

Good to go, thanks for the upgrade, i'll ring you when we use C++20 and we can use the standard fmt instead ; )

Stan added a comment.Nov 26 2020, 9:14 AM

Stan updated this revision to Diff 14202.Nov 26 2020, 9:15 AM

Fix Delayload warnings on windows and missing debug symbols linking warning This should be good to go now. Don't forget to manually replace the .lib files and the .pdb file else it will break because they will be 0kb

Stan updated this revision to Diff 14203.Nov 26 2020, 9:27 AM

Fix previous update, fmt has only delayload on windows

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

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

Stan updated this revision to Diff 14206.EditedNov 26 2020, 9:52 AM

Add missing then, sorry Don't forget to manually replace the .lib files and the .pdb file else it will break because they will be 0kb

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

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

Nescio removed a subscriber: Nescio.Nov 26 2020, 10:05 AM

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

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

Works fine for me! (Lubuntu 18.04; libfmt-dev 4.0.0+ds-2 amd64.)

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

builderr-debug-macos.txt
../../../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);
                ^~~~~~~~~~~ ~~~~~~~~
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
2 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;
                            ^
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~
1 warning 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~
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//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
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//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/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/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AGL.framework/AGL.tbd and library file /System/Library/Frameworks//AGL.framework/AGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxStringToStringHashMap_wxImplementation_HashTable::clear()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxStringToStringHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxStringToNumHashMap_wxImplementation_HashTable::clear()' from file 'obj/AtlasUI_Debug/ActorEditor.o' to global weak symbol 'wxStringToNumHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxCompositeWindow<wxSpinCtrlBase>::wxCompositeWindow()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxCompositeWindow<wxSpinCtrlBase>::OnWindowCreate(wxWindowCreateEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Debug/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
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//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/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
../../../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);
                ^~~~~~~~~~~ ~~~~~~~~
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
3 warnings 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/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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
2 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;
                            ^
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
../../../source/gui/GUIManager.cpp:258:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(argVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~
1 warning 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~
2 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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(vfs_path.o) has no symbols
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
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//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//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.
In file included from ../../../source/tools/atlas/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AGL.framework/AGL.tbd and library file /System/Library/Frameworks//AGL.framework/AGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: 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//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/2128/display/redirect

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

builderr-debug-gcc7.txt
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 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:486,
                 from ../../../source/gui/GUIManager.h:25,
                 from ../../../source/ps/Game.cpp:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp: In function 'void GUI_DisplayLoadProgress(int, const wchar_t*)':
../../../source/ps/GameSetup/GameSetup.cpp:191:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Value; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(JS::NumberValue(percent));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Rooted<JS::Value>&; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(valPendingTask);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/graphics/MapReader.h:27,
                 from ../../../source/ps/GameSetup/GameSetup.cpp:34:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CStrW}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 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:486,
                 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:486,
                 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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 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:486,
                 from ../../../source/gui/GUIManager.h:25,
                 from ../../../source/ps/Game.cpp:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp: In function 'void GUI_DisplayLoadProgress(int, const wchar_t*)':
../../../source/ps/GameSetup/GameSetup.cpp:191:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Value; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(JS::NumberValue(percent));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Rooted<JS::Value>&; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(valPendingTask);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/graphics/MapReader.h:27,
                 from ../../../source/ps/GameSetup/GameSetup.cpp:34:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CStrW}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 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:486,
                 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:486,
                 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/3786/display/redirect

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

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

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

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

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

builderr-debug-gcc7.txt
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 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:486,
                 from ../../../source/gui/GUIManager.h:25,
                 from ../../../source/ps/Game.cpp:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp: In function 'void GUI_DisplayLoadProgress(int, const wchar_t*)':
../../../source/ps/GameSetup/GameSetup.cpp:191:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Value; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(JS::NumberValue(percent));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Rooted<JS::Value>&; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(valPendingTask);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/graphics/MapReader.h:27,
                 from ../../../source/ps/GameSetup/GameSetup.cpp:34:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CStrW}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 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:486,
                 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:486,
                 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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 from ../../../source/simulation2/system/ComponentManager.h:22,
                 from ../../../source/simulation2/system/Component.h:23,
                 from ../../../source/pch/simulation2/precompiled.h:29:
../../../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:486,
                 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:486,
                 from ../../../source/gui/GUIManager.h:25,
                 from ../../../source/ps/Game.cpp:26:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp: In function 'void GUI_DisplayLoadProgress(int, const wchar_t*)':
../../../source/ps/GameSetup/GameSetup.cpp:191:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Value; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(JS::NumberValue(percent));
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../source/ps/GameSetup/GameSetup.cpp:195:18: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::append(U&&) [with U = JS::Rooted<JS::Value>&; Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  paramData.append(valPendingTask);
  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 from ../../../source/graphics/MapReader.h:27,
                 from ../../../source/ps/GameSetup/GameSetup.cpp:34:
../../../source/scriptinterface/NativeWrapperDefns.h: In member function 'bool ScriptInterface::CallFunctionVoid(JS::HandleValue, const char*, const Ts& ...) const [with Ts = {CStrW}]':
../../../source/scriptinterface/NativeWrapperDefns.h:218:19: warning: ignoring return value of 'bool js::MutableWrappedPtrOperations<JS::GCVector<T, Capacity, AllocPolicy>, Wrapper>::resize(size_t) [with Wrapper = JS::Rooted<JS::GCVector<JS::Value, 8, js::TempAllocPolicy> >; T = JS::Value; long unsigned int Capacity = 8; AllocPolicy = js::TempAllocPolicy]', declared with attribute warn_unused_result [-Wunused-result]
  (void)argv.resize(sizeof...(Ts));
        ~~~~~~~~~~~^~~~~~~~~~~~~~~
In file included from ../../../source/scriptinterface/ScriptInterface.h:486,
                 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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 from ../../../source/gui/CGUI.h:34,
                 from ../../../source/pch/gui/precompiled.h:27:
../../../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:486,
                 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:486,
                 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:486,
                 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/3790/display/redirect

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

builderr-debug-macos.txt
../../../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);
                ^~~~~~~~~~~ ~~~~~~~~
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
2 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;
                            ^
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~
1 warning 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~
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//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Security.framework/Security.tbd and library file /System/Library/Frameworks//Security.framework/Security are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenAL.framework/OpenAL.tbd and library file /System/Library/Frameworks//OpenAL.framework/OpenAL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//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/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AGL.framework/AGL.tbd and library file /System/Library/Frameworks//AGL.framework/AGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//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/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//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.
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/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);
                ^~~~~~~~~~~ ~~~~~~~~
2 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
3 warnings 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/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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
2 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;
                            ^
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
../../../source/gui/GUIManager.cpp:258:2: warning: ignoring return value of function declared with 'warn_unused_result' attribute [-Wunused-result]
        paramData.append(argVal);
        ^~~~~~~~~~~~~~~~ ~~~~~~
1 warning 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);
        ^~~~~~~~~~~~~~~~ ~~~~~~~~
2 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.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(dbghelp.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(file_stats.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ../../../binaries/system/liblowlevel.a(vfs_path.o) has no symbols
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Security.framework/Security.tbd and library file /System/Library/Frameworks//Security.framework/Security are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenAL.framework/OpenAL.tbd and library file /System/Library/Frameworks//OpenAL.framework/OpenAL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: 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/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AGL.framework/AGL.tbd and library file /System/Library/Frameworks//AGL.framework/AGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//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//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
ld: warning: direct access in function 'wxLogger::~wxLogger()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxStringToNumHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxLogger::~wxLogger()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxStringToStringHashMap_wxImplementation_HashTable::DeleteNode(_wxHashTable_NodeBase*)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_baseu-3.0.a(baselib_appbase.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxWindow>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/ActorEditor.o' to global weak symbol 'wxNavigationEnabled<wxWindow>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_busyinfo.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxListCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/EditableListCtrl.o' to global weak symbol 'wxNavigationEnabled<wxListCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_listctrlcmn.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxCompositeWindow<wxSpinCtrlBase> >::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxCompositeWindow<wxSpinCtrlBase>::OnWindowCreate(wxWindowCreateEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_spinctlg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnChildFocus(wxChildFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnFocus(wxFocusEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'wxNavigationEnabled<wxBookCtrlBase>::wxNavigationEnabled()' from file 'obj/AtlasUI_Release/Player.o' to global weak symbol 'wxNavigationEnabled<wxBookCtrlBase>::OnNavigationKey(wxNavigationKeyEvent&)' from file '/Users/wfg/Jenkins/workspace/macos-differential/libraries/osx/wxwidgets/lib/libwx_osx_cocoau_core-3.0.a(corelib_choicbkg.o)' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
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/2132/display/redirect

s0600204 updated this revision to Diff 14222.Nov 26 2020, 6:53 PM
s0600204 removed a reviewer: Vulcan.

One last upload/run through CI to make sure I've got everything before committing to SVN

Also drops the gcc6.DockerFile change, as we now expect the changes encapsulated within D3133 to have been manually applied to the CI (which it has).

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

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

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
        ^~~~~

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

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//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
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//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/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.
In file included from ../../../source/tools/atlas/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AGL.framework/AGL.tbd and library file /System/Library/Frameworks//AGL.framework/AGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage.tbd and library file /System/Library/Frameworks//CoreImage.framework/Versions/A/CoreImage are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices.tbd and library file /System/Library/Frameworks//ApplicationServices.framework/Versions/A/ApplicationServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition.tbd and library file /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit.tbd and library file /System/Library/Frameworks//AppKit.framework/Versions/C/AppKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData.tbd and library file /System/Library/Frameworks//CoreData.framework/Versions/A/CoreData are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.tbd and library file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics.tbd and library file /System/Library/Frameworks//CoreGraphics.framework/Versions/A/CoreGraphics are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText.tbd and library file /System/Library/Frameworks//CoreText.framework/Versions/A/CoreText are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO.tbd and library file /System/Library/Frameworks//ImageIO.framework/Versions/A/ImageIO are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync.tbd and library file /System/Library/Frameworks//ColorSync.framework/Versions/A/ColorSync are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/Versions/A/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis.tbd and library file /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation.tbd and library file /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation.tbd and library file /System/Library/Frameworks//Foundation.framework/Versions/C/Foundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//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/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/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//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/Versions/A/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList are out of sync. Falling back to library file for linking.
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/AtlasObject/AtlasObjectJS.cpp:21:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
1 warning generated.
../../../source/tools/atlas/AtlasUI/ActorEditor/ActorEditor.cpp:45:2: warning: 'GetCurrentProcess' is deprecated: first deprecated in macOS 10.9 [-Wdeprecated-declarations]
        GetCurrentProcess(&PSN);
        ^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:415:1: note: 'GetCurrentProcess' has been explicitly marked deprecated here
MacGetCurrentProcess(ProcessSerialNumber * PSN)               AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_9;
^
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/HIServices.framework/Headers/Processes.h:412:34: note: expanded from macro 'MacGetCurrentProcess'
    #define MacGetCurrentProcess GetCurrentProcess
                                 ^
1 warning generated.
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
In file included from ../../../source/third_party/jsonspirit/json_spirit_writer_template.h:13:
../../../source/third_party/jsonspirit/json_spirit_value.h:586:24: warning: 'static' function 'value_type_to_string' declared in header file should be declared 'static inline' [-Wunneeded-internal-declaration]
    static std::string value_type_to_string( const Value_type vtype )
                       ^
In file included from ../../../source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp:23:
In file included from ../../../source/tools/atlas/AtlasObject/JSONSpiritInclude.h:32:
../../../source/third_party/jsonspirit/json_spirit_writer_template.h:37:50: warning: unused typedef 'Char_type' [-Wunused-local-typedef]
        typedef typename String_type::value_type Char_type;
                                                 ^
2 warnings generated.
ld: warning: text-based stub file /System/Library/Frameworks//CoreAudio.framework/CoreAudio.tbd and library file /System/Library/Frameworks//CoreAudio.framework/CoreAudio are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback.tbd and library file /System/Library/Frameworks//ForceFeedback.framework/ForceFeedback are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreVideo.framework/CoreVideo.tbd and library file /System/Library/Frameworks//CoreVideo.framework/CoreVideo are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//QuartzCore.framework/QuartzCore.tbd and library file /System/Library/Frameworks//QuartzCore.framework/QuartzCore are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Metal.framework/Metal.tbd and library file /System/Library/Frameworks//Metal.framework/Metal are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//IOKit.framework/IOKit.tbd and library file /System/Library/Frameworks//IOKit.framework/IOKit are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//Cocoa.framework/Cocoa.tbd and library file /System/Library/Frameworks//Cocoa.framework/Cocoa are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox.tbd and library file /System/Library/Frameworks//AudioToolbox.framework/AudioToolbox are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//OpenGL.framework/OpenGL.tbd and library file /System/Library/Frameworks//OpenGL.framework/OpenGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//AGL.framework/AGL.tbd and library file /System/Library/Frameworks//AGL.framework/AGL are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/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 '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//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/2148/display/redirect

This revision was not accepted when it landed; it landed in state Needs Review.Nov 26 2020, 10:01 PM
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Stan removed a subscriber: Stan.Mar 3 2021, 9:06 AM