Hello dear monks!

I am creating portable perl application, which should run under Windows. So, I use embedded perl features to create my binary, as kindly described here.

I use Inline::C to speed up data processing. (I have got x75! speedup, if your curious).

But everytime I launch my-binary.exe I see _Inline. This is not what I would like to see, because I cannon assume that gcc will be available on client PCs. OK, here is an excerpt from :

The Inline code only gets compiled the first time you run it (or whenever it is modified) so you only take the performance hit once. Code that is Inlined into distributed modules (like on the CPAN) will get compiled when the module is installed, so the end user will never notice the compilation time.

How to achieve that? I use Dist::Zilla to build my application/module; I have found Dist::Zilla::Plugin::InlineIncluder, and have had an hope, that

[InlineIncluder]

will magically do all required stuff. But, no, now dz fails on build:

dzil build [DZ] beginning to build Iston Inline and Inline-C repos missing or not in right state at /home/basil +iscos/perl5/perlbrew/perls/perl-5.20.1/lib/site_perl/5.20.1/Dist/Zill +a/Plugin/InlineIncluder.pm line 49.

I'm stuck here, and don't know what to do.

Thanks for any advice!

WBR, basiliscos


In reply to Inline::C and Dist::Zilla by basiliscos

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.