sc0rpi0 Posted January 27, 2008 Posted January 27, 2008 Can perl be compiled into a windows executable? If yes, how would I go about doing so? Thanks very much. Quote
soulbleed Posted January 28, 2008 Posted January 28, 2008 http://www.indigostar.com/perl2exe.htm Quote
Taulmarill Posted April 14, 2009 Posted April 14, 2009 The perl executable itself (the interpreter) is available precompiled from http://strawberryperl.com/. Avoid other precompiled Versions since most of them become a pain as soon as you want to compile your own CPAN modules. Perl scripts - programs you write in the Perl language - can not be compiled like C or C++ programs, Perl is not meant for that. But you can package the script, dependent modules and the perl.exe into a single .exe file which will mostly behave like a stand alone executable. You can do that using the PAR::Packer module. Doing this however does not give you any performance improvement and startup times can be quite long. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.