Note (probably harmless): No library found for -lC:/Program Files (x86
+)/IVI Foundation/VISA/WinNT/lib/msc/visa32.lib
It's looking for a file named literally "libC:/Program Files (x86)/IVI Foundation/VISA/WinNT/lib/msc/visa32.lib.a", though it might accept a ".lib.lib" and it might accept the absence of the "lib" prefix (not sure).
But it's looking for a file that can't possibly exist because the name contains a colon and forward slashes (which are illegal filename characters).
You've not managed to pass on the information as you intended. Simplest way is probably to set the LIBRARY_PATH environment variable to point to the location:
set LIBRARY_PATH="C:/Program Files (x86)/IVI Foundation/VISA/WinNT/lib
+/msc"
and hope the spaces don't stuff things up. (There should be an incantation that works even if the one I've given doesn't.)
I would also then create a copy of visa32.lib named libvisa32.a (though I'm not sure if that needs to be done) and then build the module manually by running:
perl Makefile.PL LIBS=-lvisa32
dmake test
dmake install
But I've not built this module myself, so there might yet be other considerations.
I hope there's something here that you can use to your advantage.
Cheers,
Rob
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.