lib-xerces not found

I'm using xerces(http://xerces.apache.org) lib to parse a XML file in C++, so I downloaded the source code, ran a ./configure, make, make install, so when I executeg++ -o parser parser.cppand I execute ./parser, I get:./parser: error while loading shared libraries: libxerces-c-3.1.so: cannot open shared object file. No such file or directory.When I search into /usr/lib or /lib I can't find where libxerces-c-3.1.so did go, nor where libxerces-c-3.1.so is. Does someone know how could I solve that problem?
 
Back
Top