Some Pros/Cons off the top of my head:
ActivePerl
- Pro: Quick and easy to install. Corproate friendly because it comes in Microsoft Installer format.
- Pro: Comes with Windows specific modules so much better suited for Windows specific developement.
- Pro: Can integrate with Windows Scripting Host (WSH) and IIS. And the .pl extension can be associated with perl.exe.
- Pro: ActiveState provides additional modules in PPM format. Think of them as binary distributions of the modules. These can easly be downloaded using the PPM tool that comes with ActivePerl.
- Con: Harder to add modules that are not in PPM format since Windows does not come with a Make utility or a compiler. I think Microsft's make utiltiy is nmake.exe and you can probably track that down fairly easily so adding pure Perl modules should not be too difficult. However, adding ones with C code will be a lot harder.
For Cygwin, you get a UNIX like environment which makes cross-platform development easier and since it comes with GCC it is a lot easer to install additional Perl modules.
Also, I have not seen any benchmarks, but since Cygwin adds an extra abstraction layer I would expect ActivePerl to outperform it if performance really matters to you.
Of course, there's nothing to preclude you from installing both....
Update: fixed several typos.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.