----- Original Message ----- From: "Tallapragada, Sridevi" <[EMAIL PROTECTED]> To: <inline@perl.org> Sent: Thursday, October 12, 2006 7:47 PM Subject: how to include multiple libraries in the Inline LIBS
Hi How to include multiple libraries using the LIBS option. In the following line, i am only including one library "libtestprint.a" and this works use Inline C => Config => LIBS=> '-L/mydir/path1 -ltestprint' ; But when i try to include another LIBS i get an error . =================================== Not sure ... does it work if you: use Inline C => Config => LIBS=>[ '-L/mydir/path1 -ltestprint', '-L/my/otherdir/path -lother dir'] ; Or maybe it's just a matter of: use Inline C => Config => LIBS=> '-L/mydir/path1 -L/my/otherdir/path -ltestprint -lother dir' ; What have you tried ? (There will be a permutation that works :-) Cheers, Rob