I've been fiddling around with Cryengine V since about a week ago. I want to do a little project and for that I might need to set-up some custom FlowGraph ndoes. Thus, I cloned and prepped the Cryengine source code from the git repo (the 'release' branch) following this awesome tutorial
viewtopic.php?f=11&t=66
but I ran into a couple of issues when compiling/trying to debug the engine. Hopefully someone can shed some light on the situation.
First, I had a compiling error. The projects are set up in a way that errors are treated as warnings (WX compiler flag). So while compiling the SystemInit.cpp in the CrySystem project, there are two warnings for potential division by zero and as such, the compiler treats them as errors and doesn't build the CrySystem project. Trying to run the debugger sometimes gives out a 'GameLauncher' exited with code 1 error and crashes and sometimes puts out an error window saying MemoryManager: Cannot access memory management functions.
Here is the compiling error/warnings:
Code: Select all
50>c:\users\nuc\documents\github\cryengine\code\cryengine\crysystem\systeminit.cpp(274): error C2220: warning treated as error - no 'object' file generated
50>c:\users\nuc\documents\github\cryengine\code\cryengine\crysystem\systeminit.cpp(274): warning C4723: potential divide by 0
50>c:\users\nuc\documents\github\cryengine\code\cryengine\crysystem\systeminit.cpp(274): warning C4723: potential divide by 0
In both cases, the full debugger error looks like this:
Thank you in advance!
//L