vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi, When i try to compile my application i am getting this error. can u pls tell me whats the error and how to rectify it. $ /usr/local/bin/make -f Makefile xlC_r -qlonglong -D_LARGE_FILES -I/opt/jbase4/4.1/include -I.. -I../getmac -I/xerces-c_2_4_0/include -Ipackages/bzip2 -I/products -I/products/getmac -O2 -qcpluscmt -qro -qroconst -qinfo=cmp:cnd:cns:cnv:eff:enu:ini:lan:ret -qsuppress=1506-446:1506-435:1540-1408:1540-5301:1540-1407:1540-5338:1540-5344:1506-482:1506-445 -qthreaded -qMAXMEM=32768 -qcompatexternvariable -O2 -qcpluscmt -qro -qroconst -qinfo=cmp:cnd:cns:cnv:eff:enu:ini:lan:ret -qsuppress=1506-446:1506-435:1540-1408:1540-5301:1540-1407:1540-5338:1 540-5344:1506-482:1506-445 -qthreaded -qMAXMEM=32768 -DTW_OSTYPE=AIX -DTW_OSVER=5 -DTW_OSREV=3 -DTW_OSTYPE=AIX -DTW_OSVER=5 -DTW_OSREV=3 -o fastbak.exe fastbackmain.cpp libfastbak.a -brtl -blibpath:/usr/local/lib:/usr/lib:/opt/Temporal_Wave/FastBak:/opt/jbase4/latest/lib:/opt/jbase4.1/jbase/lib -lld -lpthread -lm -lcurses -lPW products/getmac/aix52/libgetmac.a -Lpackages/bzip2 -lbz2 -L/xerces-c_2_4_0/lib/aix -lxerces-c -L/opt/jbase4/4.1/lib -ljbase "xerces-c2_4_0/include/xercesc/dom/PlatformUtils.hpp", line 813.36: 1540-5350 (I) The condition always evaluates to false. ld: 0711-317 ERROR: Undefined symbol: xercesc_2_3::XMLUni::fgXercescDefaultLocale ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLPlatformUtils::Initialize(const char*,const char*,xercesc_2_3::PanicHandler*,xercesc_2_3::Memo ryManager*) ld: 0711-317 ERROR: Undefined symbol: xercesc_2_3::XMLPlatformUtils::fgTransService ld: 0711-317 ERROR: Undefined symbol: xercesc_2_3::XMLPlatformUtils::fgMemoryManager ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLTransService::makeNewTranscoderF or(const char*,xercesc_2_3::XMLTransService::Codes&,unsigne d int,xercesc_2_3::MemoryManager*) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLString::transcode(const char*) ld: 0711-317 ERROR: Undefined symbol: xercesc_2_3::XMemory: delete(void*) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_4::XMLString::transcode(const unsigned short*,char*,unsigned int) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3: unsigned short*) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLString::compareString(const unsigned short*,const unsigned short*) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLString::compareIString(const unsigned short*,const unsigned short*) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLString: ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLString::transcode(const unsigned short*) ld: 0711-317 ERROR: Undefined symbol: .xercesc_2_3::XMemory: new(unsigned long) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::MemBufInputSource::MemBufInputSourc e(const unsigned char*,unsigned int,const unsigned short*,bool,xercesc_2_3::MemoryManager*) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::Wrapper4InputSource::Wrapper4InputS ource(xercesc_2_3::InputSource*,bool) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLString::copyNString(unsigned short*,const unsigned short*,unsigned int) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::MemBufFormatTarget::MemBufFormatTar get(int,xercesc_2_3::MemoryManager*) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::MemBufFormatTarget::getRawBuffer() const ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLString::copyString(unsigned short*,const unsigned short*) ld: 0711-317 ERROR: Undefined symbol: ..xercesc_2_3::XMLString::catString(unsigned short*,const unsigned short*) ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. make: *** [fastbak.exe] Error 8 Expecting a favourablle reply from u. Thanks in Advance, Sairam |
| ||||
| sairam.khp@gmail.com wrote: > When i try to compile my application i am getting this error. can u > pls tell me whats the error and how to rectify it. > > ld: 0711-317 ERROR: Undefined symbol: > xercesc_2_3::XMLUni::fgXercescDefaultLocale [and so on] > > Expecting a favourablle reply from u. u guesses that you forgot to link the library that exports the symbols that are reported as undefined. Could be some xerces library from the looks of it. Yours, Laurenz Albe |