https://bugzilla.redhat.com/show_bug.cgi?id=1644377
--- Comment #6 from Petr Pisar <ppi...@redhat.com> --- (In reply to tla2k15 from comment #4) > $ strace -fq -e open,openat -- /usr/bin/perl -w /usr/bin/autom4te > --language=autoconf --output=configure configure.ac [...] > openat(AT_FDCWD, "/usr/local/share/perl5/Carp.pm", O_RDONLY|O_CLOEXEC) = 6 [...] > openat(AT_FDCWD, "/usr/local/lib64/perl5/Scalar/Util.pm", > O_RDONLY|O_CLOEXEC) = 5 > openat(AT_FDCWD, "/usr/local/lib64/perl5/List/Util.pm", O_RDONLY|O_CLOEXEC) > = 5 > openat(AT_FDCWD, "/usr/local/lib64/perl5/auto/List/Util/Util.so", > O_RDONLY|O_CLOEXEC) = 5 > --- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0x5} --- > +++ killed by SIGSEGV (core dumped) +++ > Segmentation fault (core dumped) You have Carp, Scalar::Util, and List::Util Perl modules built locally, possibly against a different perl or with an incompatible compiler or linker flags. And that very probably causes the crash. "perl -e 'use Scalar::Util'" command should crash for you too. Either rebuild them or remove them from /usr/local. -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ perl-devel mailing list -- perl-devel@lists.fedoraproject.org To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org