in reply to Re^4: Help with Inline C
in thread Help with Inline C
Alternatively, once you've got 'parser.o', you could just go that one extra step and create 'libparser.a' with:use Config; use Inline C => Config => LDDLFLAGS => $Config::Config{lddlflags} . ' /full/path/to/parser.o';
Then LIBS => '-L/full/path/to/lib -lparser' should also work fine.ar cru libparser.a parser.o
|
|---|