/apps/perl/5.8.0/lib
...
/usr/perl5/5.00503
That is a red flag (when perl -V:multiarch returns undef). Perl 5.5.x is not compatible with 5.8.x, so any .so files compiled with one perl aren't compatible with the other.
I checked the folder /home/xf023126/lib/perl5/site_perl/auto/HTML/Parser for the Parser.so, and I found it there. I can't figure out why I have a problem?
The error message says it all Parser.so: symbol Perl_Tstack_sp_ptr: referenced symbol not found. It means that Parser.so is linked with a perl (that is linked with a libperl.so ) that defined the Perl_Tstack_sp_ptr symbol, but the perl that is trying to load Parser.so has no such symbol. If you check your libperl.so.5.5 for Perl_Tstack_sp_ptr you won't find it, but you will in libperl.so.5.8. You can't mix your perls like that. You need to make sure the perl you're running your script with is the same perl you compiled your modules with.

PS - ld.so is the dynamic linker/loader.

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.


In reply to Re: ld.so.1: perl: fatal: relocation error by PodMaster
in thread ld.so.1: perl: fatal: relocation error by august3

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.