Dave Horsfall <[EMAIL PROTECTED]> writes: >I must be misreading the documentation or something... > >Perl 5.8.0, MakeMaker 6.03 > >I'm trying to specify a set of libraries like this in Makefile.PL: > >'LIBS' => ['-L/usr/unify/lib -ld1.a -ld2.a -lx.a'] > >(where libd1.a etc live under /usr/unify/lib) and I get this: > >Note (probably harmless): No library found for -ld1.a >Note (probably harmless): No library found for -ld2.a >Note (probably harmless): No library found for -lx.a
The 'probably harmless' may be true for perl core stuff but seldom is for extensions. > >The libraries do not appear in the Makefiles (except as a comment). What >am I doing wrong? Adding the .a LIBS' => ['-L/usr/unify/lib -ld1 -ld2 -lx']
