Hi,
I successfully compiled my Game and DB file from the server source (Using Fliege files, I haven't modified anything!).
When I try to start the server (sh index.sh) I get the following error:
Illegal instruction (core dumped)
So I changed the game and db makefiles by removing the '-march=-native' command from the cflag.
Still didn't work and I get the error message from above.
So now I tried to debug the game.core file and I get the following message:
#0 0x081c6216 in _GLOBAL__sub_I_item_manager_read_tables.cpp () at length.h:716
I opened my item_manager_read_tables.cpp file and went to line 716 ? (I don't understand 'at length.h:716', I guess it means line 716?)
And I have the following if statement:
if (iCount < 1)
{
M2_DELETE(pkLevelItemGroup);
return false;
}
So does anyone have any idea what I am doing wrong / what I can do, to fix it ?
Regards