View Single Post
  #1  
Old 09-22-2014, 09:20 PM
Mortow's Avatar
Mortow
Hill Giant
 
Join Date: Apr 2013
Posts: 215
Default Another build fail...

I pulled today and recompiled but it failed on three of the builds. Here is the error list from Visual Studio Express 2012 (win32 build).

Code:
Error	3	error C2039: 'isnan' : is not a member of 'std'	C:\EQ\Source\common\database.cpp	1759	1	common
Error	4	error C3861: 'isnan': identifier not found	C:\EQ\Source\common\database.cpp	1759	1	common
Error	5	error C2039: 'isnan' : is not a member of 'std'	C:\EQ\Source\common\database.cpp	1767	1	common
Error	6	error C3861: 'isnan': identifier not found	C:\EQ\Source\common\database.cpp	1767	1	common
Error	47	error LNK2019: unresolved external symbol "public: bool __thiscall Database::StoreCharacter(unsigned int,struct PlayerProfile_Struct *,class Inventory *)" (?StoreCharacter@Database@@QAE_NIPAUPlayerProfile_Struct@@PAVInventory@@@Z) referenced in function "private: bool __thiscall Client::OPCharCreate(char *,struct CharCreate_Struct *)" (?OPCharCreate@Client@@AAE_NPADPAUCharCreate_Struct@@@Z)	C:\EQ\Source\Build\world\client.obj	world
Error	48	error LNK2019: unresolved external symbol "public: bool __thiscall Database::CheckDatabaseConversions(void)" (?CheckDatabaseConversions@Database@@QAE_NXZ) referenced in function _main	C:\EQ\Source\Build\world\net.obj	world
Error	49	error LNK2019: unresolved external symbol "public: bool __thiscall Database::ThrowDBError(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?ThrowDBError@Database@@QAE_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) referenced in function "public: void __thiscall WorldDatabase::GetCharSelectInfo(unsigned int,struct CharacterSelect_Struct *,unsigned int)" (?GetCharSelectInfo@WorldDatabase@@QAEXIPAUCharacterSelect_Struct@@I@Z)	C:\EQ\Source\Build\world\worlddb.obj	world
Error	50	error LNK1120: 3 unresolved externals	C:\EQ\Source\Build\Bin\Debug\world.exe	world
Error	150	error LNK2019: unresolved external symbol "public: void __thiscall SharedDatabase::LoadCharacterInspectMessage(unsigned int,struct InspectMessage_Struct *)" (?LoadCharacterInspectMessage@SharedDatabase@@QAEXIPAUInspectMessage_Struct@@@Z) referenced in function "public: void __thiscall Client::Handle_Connect_OP_ZoneEntry(class EQApplicationPacket const *)" (?Handle_Connect_OP_ZoneEntry@Client@@QAEXPBVEQApplicationPacket@@@Z)	C:\EQ\Source\Build\zone\client_packet.obj	zone
Error	151	error LNK2019: unresolved external symbol "public: void __thiscall SharedDatabase::SaveCharacterInspectMessage(unsigned int,struct InspectMessage_Struct const *)" (?SaveCharacterInspectMessage@SharedDatabase@@QAEXIPBUInspectMessage_Struct@@@Z) referenced in function "public: void __thiscall Client::Handle_OP_InspectAnswer(class EQApplicationPacket const *)" (?Handle_OP_InspectAnswer@Client@@QAEXPBVEQApplicationPacket@@@Z)	C:\EQ\Source\Build\zone\client_packet.obj	zone
Error	152	error LNK2019: unresolved external symbol "public: bool __thiscall Database::ThrowDBError(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?ThrowDBError@Database@@QAE_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) referenced in function "public: bool __thiscall ZoneDatabase::SaveCharacterBindPoint(unsigned int,unsigned int,unsigned int,float,float,float,float,unsigned char)" (?SaveCharacterBindPoint@ZoneDatabase@@QAE_NIIIMMMME@Z)	C:\EQ\Source\Build\zone\zonedb.obj	zone
Error	153	error LNK1120: 3 unresolved externals	C:\EQ\Source\Build\Bin\Debug\zone.exe	zone
Is something else required other than re-generating with c-make and recompiling?

Thanks,
Mortow
Reply With Quote