![]() |
|
[HELP] GameServer compiling - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Guides & Help Section (https://lckb.dev/forum/forumdisplay.php?fid=193) +---- Forum: Help & Support (https://lckb.dev/forum/forumdisplay.php?fid=157) +----- Forum: Ep4 Support (https://lckb.dev/forum/forumdisplay.php?fid=128) +----- Thread: [HELP] GameServer compiling (/showthread.php?tid=4959) |
- laurojr - 10-21-2022 Good night guys!! Well im trying to build my serverfiles now, and im getting an link error on gameserver... 8>Link: 8> ShareLib.lib(DBCmd.obj) : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance 8>LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/LTCG' specification 8>ServerTimer.obj : error LNK2001: unresolved external symbol "public: void __thiscall AutoBuffSystem::TickSystem(void)" (?TickSystem@AutoBuffSystem@@QAEXXZ) 8>doFuncAdmin.obj : error LNK2001: unresolved external symbol "public: void __thiscall AutoBuffSystem::TickSystem(void)" (?TickSystem@AutoBuffSystem@@QAEXXZ) 8>doFuncAdmin.obj : error LNK2001: unresolved external symbol "public: void __thiscall AutoBuffSystem::ReloadTable(void)" (?ReloadTable@AutoBuffSystem@@QAEXXZ) 8>doFuncAdmin.obj : error LNK2001: unresolved external symbol "public: void __thiscall AutoBuffSystem::TurnOff(void)" (?TurnOff@AutoBuffSystem@@QAEXXZ) 8>doFuncAdmin.obj : error LNK2001: unresolved external symbol "public: void __thiscall AutoBuffSystem::TurnOn(void)" (?TurnOn@AutoBuffSystem@@QAEXXZ) 8>Server.obj : error LNK2001: unresolved external symbol "public: __thiscall AutoBuffSystem::~AutoBuffSystem(void)" (??1AutoBuffSystem@@QAE@XZ) 8>Server.obj : error LNK2001: unresolved external symbol "public: __thiscall AutoBuffSystem::AutoBuffSystem(void)" (??0AutoBuffSystem@@QAE@XZ) 8>Server.obj : error LNK2001: unresolved external symbol "public: bool __thiscall AutoBuffSystem::Init(void)" (?Init@AutoBuffSystem@@QAE_NXZ) 8>..\..\SERVER\GameServer\GameServer.exe : fatal error LNK1120: 7 unresolved externals Can someone help me? THX - Desarija - 10-22-2022 u probably have the declarations of those functions but the definitions are missing, for example void TickSystem(); |