in reply to Re^2: Inline::C with MSVC and linking external library
in thread Inline::C with MSVC and linking external library
No. That parameter is basically the command line switch for the compiler to link the named library, -l and then the library name:
use Inline C => Config => LIBS => '-lyourlib';
So, in your case, I would try
use Inline C => Config => LIBS => '-lusbi2cio';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Inline::C with MSVC and linking external library
by rem45acp (Novice) on Aug 30, 2013 at 15:31 UTC | |
by BrowserUk (Patriarch) on Aug 30, 2013 at 15:34 UTC |