I am trying to use STL objects (Map, Vector) in my Arm4vi device project using windows embeded compact 7 sdk.
My application gets compiled. However I am getting the linkig errors as follows....
TempStringDlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static char * __cdecl std::char_traits::_Copy_s(char *,unsigned int,char const *,unsigned int)" (_imp?_Copy_s@?$char_traits@D@std@@SAPADPADIPBDI@Z) referenced in function "char * __cdecl std::_Traits_helper::copy_s >(char *,unsigned int,char const *,unsigned int,struct std::_Secure_char_traits_tag)" (??$copy_s@U?$char_traits@D@std@@@_Traits_helper@std@@YAPADPADIPBDIU_Secure_char_traits_tag@1@@Z)
1>TempStringDlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static char * __cdecl std::char_traits::_Move_s(char *,unsigned int,char const *,unsigned int)" (_imp?_Move_s@?$char_traits@D@std@@SAPADPADIPBDI@Z) referenced in function "char * __cdecl std::_Traits_helper::move_s >(char *,unsigned int,char const *,unsigned int,struct std::_Secure_char_traits_tag)" (??$move_s@U?$char_traits@D@std@@@_Traits_helper@std@@YAPADPADIPBDIU_Secure_char_traits_tag@1@@Z)
1>TempStringDlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static void __cdecl std::_String_base::Xran(void)" (_imp_?_Xran@_String_base@std@@SAXXZ) referenced in function "public: class std::basic_string,class std::allocator > & __cdecl std::basic_string,class std::allocator >::erase(unsigned int,unsigned int)" (?erase@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAAAAV12@II@Z)
1>TempStringDlg.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static void __cdecl std::_String_base::Xlen(void)" (_imp_?_Xlen@_String_base@std@@SAXXZ) referenced in function "protected: bool __cdecl std::basic_string,class std::allocator >::_Grow(unsigned int,bool)" (?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IAA_NI_N@Z)
These errors get resolved if I change the Path order from Tools->Options->VC++ Directories for Include and lib file
If I specify the SDK path first and then the MFC path then application compiles properly. However if I specify the MFC path first and then the SDK then it gives me linking errors.
My application is using streambuff objects and specifying the SDK path first in the VC++ directories gives me compilation errors in streambuff file of MFC(141 errors).
Could you please help me/suggest me which is the standard way of searching for include and liabrary file , MFC libraries first and then SDK or SDK first and then MFC libraries.
Please help me. Could you please help me to point to a standard sdk for windows embeded compact. Please also let us know if windows embeded compact supports STL