in reply to Segfault when trying to make a module
If this is your raw output then the problem is that you are trying to make test before you have run make You need to run make to generate the blib that the tests run by make test uses. The blib is the build library which is a temporary file system that is used to install your module for testing prior to installation. Anyway do this:
$ perl Makefile.PL $ make $ make test $ make install
I expect this should work fine. Please report back if not and I will then suggest shutting down other running processes before you do the install.
cheers
tachyon
s&&rsenoyhcatreve&&&s&n.+t&"$'$`$\"$\&"&ee&&y&srve&&d&&print
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Segfault when trying to make a module
by danger (Priest) on Dec 23, 2001 at 02:14 UTC | |
by tachyon (Chancellor) on Dec 23, 2001 at 14:29 UTC |