How can you determine what Perl module is causing “undefined symbol: Perl_Tstack_sp_ptr?”

后端 未结 4 814
故里飘歌
故里飘歌 2020-12-19 04:36

I\'m trying to run a Perl script, but it is returning:

/usr/bin/perl: symbol lookup error: /usr/local/groundwork/perl/lib/5.8.8/x86_64-linux-thread-

4条回答
  •  一整个雨季
    2020-12-19 05:18

    IO.so is the binary component of IO. The modules of this distribution are also part of the perl distribution (i.e. they are dual-lived).

    This type of error usually occurs when using a binary compiled using one version of Perl is used by a different version of Perl.

提交回复
热议问题