in reply to Re: Installing Perl Wrapper Module for a C Library (Tree::Suffix) Locally
in thread Installing Perl Wrapper Module for a C Library (Tree::Suffix) Locally
To make sure the variables are set correctly you can typeperl Makefile.PL $CFLAGS $LDFLAGS
If they aren't set correctly, you can run the export command in an earlier posting to fix it.printenv | grep FLAGS
Also, if you don't want to sit around and wait (although for troubleshooting purposes, it's probably better to do so), you can type
The && means that the command will only execute if the previous one was OK.perl Makefile.PL $CFLAGS $LDFLAGS && make && make test && make install
-- Burvil
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Installing Perl Wrapper Module for a C Library (Tree::Suffix) Locally
by fizbin (Chaplain) on Mar 15, 2006 at 15:45 UTC | |
by bowei_99 (Friar) on Mar 15, 2006 at 16:16 UTC |