in reply to undefined symbol: PL_thr_key

Please disregard this question. Apparently, using my package manager to uninstall the previous version of perl was not as effective as a brute force 'rm -f'.

Replies are listed 'Best First'.
Re^2: undefined symbol: PL_thr_key
by Anonymous Monk on Dec 17, 2012 at 09:50 UTC

    I'll not disregard your question, for the sake of future readers.

    The error comes from a module compiled against threaded Perl while your Perl installation is not threaded (probably because you recompiled it). The solution is to recompile the module against the new Perl.

    (I had a few such problems when toggling the threads flag on Gentoo.)

      Thank you so much for not disregarding the quesion... I had recompiled Perl without threading and couldn't figure out what the problem was until I read your response! Thanks again!
      And perl-cleaner --reallyall should clear it up