Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compile - > Perl to EXE

Status
Not open for further replies.

jr8rdt

IS-IT--Management
Feb 9, 2006
59
US
Hello,

Can you recommend the best compiler to convert perl to exe? my company is shopping for the best now (buy license)
I have used the trial version of perl2exe by indigostar.
any input? and any other choice/recommendation?

Thanks

 
PerlApp by ActiveState is a really good one that I used for quite a while. It's not free though, but it does a pretty good job at creating the smallest executable size possible.

For a free solution though, `pp` works just as well as PerlApp as far as I've seen. Just search it on CPAN. It compiles and installs pretty easily on Windows and Linux (just do the 'perl Makefile.pl; make; make install').

I actually just use pp for everything now. So I kinda recommend that. The whole Perl Dev Kit is pretty expensive when all you want from it is PerlApp.

Code:
pp --icon myicon.ico source.pl binary.exe

-------------
Cuvou.com | My personal homepage
Project Fearless | My web blog
 
Perl2Exe is the best I have used so far. But as mentioned above there are plenty of free to use methods out there.
 
Try package: App::packer

It's not really compiling, but it can create stand-alone exes.
 
Well, as chipk said, that's pretty much how all the compilers work afaik.

Like App::packer, pp and PerlApp really just create an archive that contains your copy of the Perl interpreter, all the modules and source codes that your Perl app uses, and bundles them together into an executable file that can stand on its own. On the first run, it extracts itself to a temporary directory and then runs a standard "perl sourcecode.pl" on the copy of perl.exe that it extracted to temp.

Apps compiled with pp, for instance, can be opened up in WinZip like a normal zip file, and browsed and extracted. AFAIK PerlApp does the same thing as pp, but automatically applies source code obfuscators (which pp can do as an option) so that if your code gets extracted from the binary, it'll be jumbled up and hard to decode unless you have a debugging version of Perl and really know what you're doing. Keeps the source code safe from the average prying eye, though.

I can't say how perl2exe does it but I imagine it follows the same pattern.

Having said that, a GUI application such as one that uses Perl Tk or wxPerl, will automatically be about 3 or 4 megabytes in size simply because they will need to bundle the entire Tk or wxPerl libraries inside themselves, respectively. They don't optimize the code like C or C++ do because Perl binaries aren't truly compiled into machine code.

-------------
Cuvou.com | My personal homepage
Project Fearless | My web blog
 
I use Active State Perl Developer Kit. It has a lot of funcionalities. I was able to create good executables files in Unix and Windows environment.

Cheers

dmazzini
GSM/UMTS System and Telecomm Consultant

 
Just a question that's related to this, as I struggle to install pp in another forum.

Can a linux distribution pack up an exe for Windows?

i.e. in Linux,

pp -o output.exe myperlfile.pl

Is this valid (i.e. will output.exe run in Windows)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top