http://qs321.pair.com?node_id=639807


in reply to Re^4: Perl 6 and exe
in thread Perl 6 and exe

I had in mind main perl executable but linked in such a way that it runs foo.pl seamlessly (not from any application, we were talking of a way to create EXEs out from perl scripts from the very start.)

suppose you have script foo.pl, which uses Bar:: and Fluffy:: XS extensions.
($^O equals to 'MSWin32' in my explanations)

You want to create foo.exe, much like PAR but with statical linking and w/o temporary unzips.

With an approach kept by me in mind (and by Ilya Zakharevich in mentioned link) you will result in:

The resulting perl executable runs your foo.pl and w/o temporaries.