in reply to Re^10: How To Link -lperl to Extensions During Build
in thread How To Link -lperl to Extensions During Build
When logging make output, it's useful to capture both stdout and stderr: "make >& LOG". But no matter.
From the logs it appears the configure and make is correctly linking the shared objects against -lperl. However, the main perl executable itself is linked directly to libperl.so.
Try the plain configure again, but override a make flag:
make LLIBPERL='-L. -lperl'
In case you get it to install, there's still the possibility that further config flags are going to be needed. Test by installing a cpan package by hand, e.g. List-MoreUtils-*.tar.gz. Unpack; cd; perl Makefile.PL && make && make install; see if it works.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^12: How To Link -lperl to Extensions During Build
by cyd (Novice) on May 20, 2015 at 20:06 UTC | |
by Anonymous Monk on May 21, 2015 at 18:25 UTC |