It looks like your linker can not find some dlls that are dependencies for /mypath/auto/ccom/ccom.dll. You need to add the directory these dlls are in to you PATH environmental variable. If you are not sure what dlls are causing the problem the windows equivalent for ldd should help.I'm not sure what this is but Dependency Walker seems like a good place to start.

link@localhost:/tmp$ perl -e'use uB;uB::greet();' Had problems bootstrapping Inline module 'uB_3a3f' Can't load '/tmp/_Inline/lib/auto/uB_3a3f/uB_3a3f.so' for module uB_3a +3f: libstart.so: cannot open shared object file: No such file or dire +ctory at /usr/lib/perl/5.8/DynaLoader.pm line 225. at /usr/local/share/perl/5.8.3/Inline.pm line 500 at uB.pm line 5 BEGIN failed--compilation aborted at uB.pm line 12. Compilation failed in require at -e line 1. BEGIN failed--compilation aborted at -e line 1. link@localhost:/tmp$ ldd _Inline/lib/auto/uB_3a3f/uB_3a3f.so libstart.so => not found libc.so.6 => /lib/libc.so.6 (0x40010000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000) link@localhost:/tmp$ export LD_LIBRARY_PATH=/tmp link@localhost:/tmp$ perl -e'use uB;uB::greet();' Hello, world done link@localhost:/tmp$ ldd _Inline/lib/auto/uB_3a3f/uB_3a3f.so libstart.so => /tmp/libstart.so (0x40004000) libc.so.6 => /lib/libc.so.6 (0x40012000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000) link@localhost:/tmp$

In reply to Re: Tweaking DynaLoader's path without write access to the perl installation by El Linko
in thread Tweaking DynaLoader's path without write access to the perl installation by mhi

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.