in reply to use Inline CPP to call function in so file not working

If you're wanting to link directly to 'libsay_hi.so', you might need to make use of the MYEXTLIB config option:
use Inline CPP => Config => MYEXTLIB => '/full/path_to/libsay_hi.so';
Cheers,
Rob

Replies are listed 'Best First'.
Re^2: use Inline CPP to call function in so file not working
by Anonymous Monk on Jan 09, 2014 at 07:49 UTC

    If you're wanting to link directly to 'libsay_hi.so', you might need to make use of the MYEXTLIB config option:

    That seems to go over a lot smoother than using LIBS => "-l ..." option

Re^2: use Inline CPP to call function in so file not working
by codesoar (Novice) on Jan 10, 2014 at 06:34 UTC
    This works! Many Thanks!