sc0rpi0 Posted January 27, 2008 Share 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 Link to comment Share on other sites More sharing options...
soulbleed Posted January 28, 2008 Share Posted January 28, 2008 http://www.indigostar.com/perl2exe.htm Quote Link to comment Share on other sites More sharing options...
digip Posted January 29, 2008 Share Posted January 29, 2008 and: http://www.perl.com/download.csp Quote Link to comment Share on other sites More sharing options...
Oberon Posted March 3, 2009 Share Posted March 3, 2009 http://www.activestate.com/perl_dev_kit/ Quote Link to comment Share on other sites More sharing options...
Taulmarill Posted April 14, 2009 Share 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 Link to comment Share on other sites More sharing options...
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.