C++ library not able to locate another library it uses -
i building c++ console application custom built sdk. have header files , libraries not have source code (implementation).
in 1 particular case, because of being in different namespaces, method in 1 class (lets class a) not able access class b.
how can fix issue knowing don't have source code.
in main function, create object reference writing following command:
event *event=new event(); on writing statement, following compiler error:
(event.o): in function com::egi::services::mff::api::event::setbegintime(egibase::egixstringwrap)': event.cpp:(.text+0xacd): undefined reference egibase::egixstringwrap::getstringcopy[abi:cxx11]()'
code follows:
#include "event.h" #include "egixstringwrap.h" int main() { event *event=new event(); // error crops up.` } ps: egixstringwrap , event classes. setbegintime() method of event calls getstringcopy() method of egixstringwrap
just in case 1 of our other customers hits issue, link order problem; libraries fine. contact our support if have questions- egi.
Comments
Post a Comment