> "resolve_symbols: loader error: dlopen: libxerces-c1_6_0.so: > symbol "containsKey__C36RefHashTableOf__T17RangeTokenElemMapXCPCv" > unresolved"
To me, this looks like a broken libxerces. Are you sure that the Xerces-C library you built contains all object files? Go back and check the compiler output and see if you are not getting errors on one or more files. Either that, or you are trying to link in libxerces with an app using a different C++ compiler than the one used to build Xerces-C. GCC has a handy utility called "c++filt" that will undecorate the string for you and point out the culprit function -- maybe your compiler has something similar that will give you a hint... E.g: # echo "_ZN3Foo3barEi" | c++filt Foo::bar(int) Good luck, Martin --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
