deprecated has asked for the wisdom of the Perl Monks concerning the following question:
I'm installing the Everything Engine to test out some ideas I've got for the monastery. I have had to install a few modules for it, and one of them is XML::Encoding. When I attempted to install it with CPAN, it barfed. So I went to install it by hand, and some curious things happened.
I would run :
I thought this was kind of odd given that it seemed like all the tests were fine. So I went to have a look at the test script and saw this:perl Makefile.PL make make test # and what would happen is this: 08:28:20 [alex : macachu : ~/.cpan/build/XML-Encoding-1.01] [40] $ make test PERL_DL_NONLAZY=1 /bin/perl -Iblib/arch -Iblib/lib -I/usr/local/lib/pe +rl5/5.6.0/ppc-linux-thread -I/usr/local/lib/perl5/5.6.0 test.pl 1..7 ok 1 ok 2 ok 3 ok 4 ok 5 ok 6 ok 7 make: *** [test_dynamic] Segmentation fault (core dumped)
that is the very end of the script. so it would appear that `make` is segfaulting at exit of the script. I changedmy $err = $@; unless ($err and $err =~ /^Len plus byte > 256/) { print "not "; } print "ok 7\n";
and it, of course, exited, and `make` was happy."print "ok 7\n"; # to... print "ok 7\n"; exit 0;
What gives? for the curious, this is GNU Make 3.77 on linux/PowerPC.
Confused,
brother dep.
--
transcending "coolness" is what makes us cool.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Weirdness with XML-Encoding-1.01
by mirod (Canon) on Feb 24, 2001 at 20:24 UTC | |
by MeowChow (Vicar) on Feb 25, 2001 at 04:27 UTC | |
by rpc (Monk) on Feb 25, 2001 at 15:22 UTC |