in reply to Perl Executable

For what OS? PAR::Packer runs on windows/linux/macintosh, as does http://cavapackager.com/

You need to build each .exe on the target OS (or in an emulator)

Replies are listed 'Best First'.
Re^2: Perl Executable (for what OS)
by Anonymous Monk on Aug 06, 2013 at 09:01 UTC
    yes that is what I wish to by pass , is there any way to make it OS independent

      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.

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

      No, there are no universal binaries