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

yes that is what I wish to by pass , is there any way to make it OS independent

Replies are listed 'Best First'.
Re^3: Perl Executable (for what OS)
by kcott (Archbishop) on Aug 06, 2013 at 09:17 UTC
Re^3: Perl Executable (for what OS)
by tobyink (Canon) on Aug 06, 2013 at 10:20 UTC

    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
      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.
Re^3: Perl Executable (for what OS)
by Anonymous Monk on Aug 06, 2013 at 09:05 UTC

    yes that is what I wish to by pass , is there any way to make it OS independent

    No, there are no universal binaries