in reply to How to debug a segfault?

Well, if the problem is whether an executable called from Perl segfaults, inspect $? after calling the executable:
if (($? & 127) == 11) { print "program segfaulted\n"; }
Abigail