in reply to Problem with XSLoader in Dumper.pm while using coverage
You are mixing versions again. Your error is a failure to load an XS module due to an undefined symbol. Since the XS module that is failing to load is well-tested and widely used, we can assume that its code is probably correct and you are trying to load an XS module for one version of perl into a different version of perl, which generally does not work.
Data::Dumper is a core module. Why is it in your custom PERL5LIB tree? Are you perhaps trying to run one version of perl with the libraries for a different version of perl? That does not work.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with XSLoader in Dumper.pm while using coverage
by ovedpo15 (Pilgrim) on Dec 05, 2019 at 09:19 UTC | |
by jcb (Parson) on Dec 05, 2019 at 23:29 UTC |