Hi,
When I put lines like
LIBS => '-L/sw/lib -lnode -lnle',
INC => '-I/sw/include',
in the call to WriteInlineMakefile(), the given headers &
libraries aren't found - it's as if I never specified these
arguments at all. The identical lines work fine if I put them
in the module:
BEGIN {
$VERSION = '0.01';
}
use Inline (C => 'DATA',
VERSION => $VERSION,
NAME => __PACKAGE__,
LIBS => '-L/sw/lib -lnode -lnle',
INC => '-I/sw/include',
);
Are LIBS and INC not getting passed to the proper places? I'm
using Inline 0.43.
-Ken