"Simon Stevenson" <[EMAIL PROTECTED]> writes:

> t/DOMCount..........Can't load 'blib/arch/auto/XML/Xerces/Xerces.so' for
> module XML::Xerces: ld.so.1: /bin/perl: fatal: relocation error: file
> blib/arch/auto/XML/Xerces/Xerces.so: symbol
> _6XMLUni.fgIllegalArgumentException_Name: referenced symbol not found at
> /usr/local/lib/perl5/5.00503/sun4-solaris/DynaLoader.pm line 169.

This is a dynamic loading error. They always show up at DynaLoader.pm
because that's the last bit of perl that got called before dl_open()
got called. That symbol should be defined in libxerces.so, if it isn't
that's the problem. If they are defined in libxerces, then you
probably haven't properly set your LD_LIBRARY_PATH (or whatever
Solaris calls that variable).

jas.

$ nm libxerces-c1_5_1.so |grep fgIllegalArgumentException_Name
003ae336 D _6XMLUni.fgIllegalArgumentException_Name


$ nm blib/arch/auto/XML/Xerces/Xerces.so |grep fgIllegalArgumentException_Name
         U _6XMLUni.fgIllegalArgumentException_Name



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to