![]() |
|
Client build error - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Release Zone (https://lckb.dev/forum/forumdisplay.php?fid=190) +---- Forum: Episode 4 Releases (https://lckb.dev/forum/forumdisplay.php?fid=156) +----- Forum: Client Side (https://lckb.dev/forum/forumdisplay.php?fid=162) +----- Thread: Client build error (/showthread.php?tid=4998) |
- MLIKE - 12-24-2022 Hi, everyone! I ran into such a problem when building the November client, everything is in order for all libraries and variables, everything is compiled except Engine. The error code is attached below! Creating library \Bin\Engine.lib and object \Bin\Engine.exp UIWindowDeclare.obj : error LNK2001: unresolved external symbol "public: __thiscall GuildTaxHistoryUI::GuildTaxHistoryUI(void)" (??0GuildTaxHistoryUI@@QAE@XZ) SessionState.obj : error LNK2001: unresolved external symbol "public: void __thiscall GuildTaxHistoryUI::ResetTakeInfo(void)" (?ResetTakeInfo@GuildTaxHistoryUI@@QAEXXZ) SessionState.obj : error LNK2001: unresolved external symbol "public: void __thiscall GuildTaxHistoryUI::AddTakeInfo(int,int,__int64)" (?AddTakeInfo@GuildTaxHistoryUI@@QAEXHH_J@Z) SessionState.obj : error LNK2001: unresolved external symbol "public: void __thiscall GuildTaxHistoryUI::open(void)" (?open@GuildTaxHistoryUI@@QAEXXZ) \Bin\Engine.dll : fatal error LNK1120: 4 unresolved externals - Andrein95 - 02-22-2023 You are missing body of these functions: GuildTaxHistoryUI::open etc... search them and remove them - nicolasg - 02-22-2023 Hmm, in Nov there are files excluded, I would try to clean the Engine project and link everything again... - pwesty - 03-03-2023 https://drive.google.com/file/d/1su6XGaV8b4d9-DyvLByzoRdZQAptO4Db/view?usp=share_link Engine\Contents\function\ GuildTaxHistory.cpp GuildTaxHistory.h if you truly want them there ya go - nicolasg - 03-03-2023 20 minutes ago, pwesty said: https://drive.google.com/file/d/1su6XGaV8b4d9-DyvLByzoRdZQAptO4Db/view?usp=share_link Engine\Contents\function\ GuildTaxHistory.cpp GuildTaxHistory.h if you truly want them there ya go these files come in the source, they are simply excluded from the solution (at least in nov) - pwesty - 03-06-2023 On 3/3/2023 at 6:50 PM, nicolasg said: these files come in the source, they are simply excluded from the solution (at least in nov) the original source i leaked didn't have these actually, so i guess it just depends on the version but yes, they are marked as excluded or at least should be |