in reply to Re^2: Perl Executable (for what OS)
in thread Perl Executable

Executables are always OS- and architecture-dependent.

It was OS-independent before you used PAR::Packer.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^4: Perl Executable (for what OS)
by sundarurfriend (Novice) on Aug 08, 2013 at 19:08 UTC
    To me it sounded like Anon was looking to bypass this part specifically: > You need to build each .exe on the target OS (or in an emulator) I think he wants to do a cross-compile kind of thing with PAR. I may of course be entirely wrong in this interpretation, it's for the OP to clarify.