G'day Bloehdian,

The PAR::StrippedPARL::Static (and PAR::StrippedPARL::Dynamic) modules were last distributed with 1.010; they were absent from 1.011.

In the Changes file, under '1.037  2017-05-28', you'll see:

"Fail early when packing with a version of Perl that's different frome the one PAR::Packer was built with. Scenario: User has built and installed PAR::Packer ... then installs a newer version of Perl ..."

As pp is now a module as well as a script, you can get version and location information about both of those, and equivalent information about perl, with these commands:

$ perl -E 'use pp; say $INC{"pp.pm"}; say $pp::VERSION;' $ which pp $ pp -V $ which perl $ perl -v

I'd also check the shebang line in program.pl.

I concur with the advice[1,2] from both ++choroba1 and ++marto2. Your problem could be either; or a combination of both. If digging deeper (using the suggestions above) doesn't resolve your issue, post your results and we can look at it further.

— Ken


In reply to Re: Module Static.pm not found when using perl packer by kcott
in thread Module Static.pm not found when using perl packer by Bloehdian

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.