How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T17:41:19Zhttp://stackoverflow.com/feeds/question/463947http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/463947/how-can-i-modify-my-cygwin-environment-to-use-strawberry-perl-instead-of-the-pack3How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?Sam Johnson2009-01-21T02:45:38Z2009-06-22T15:02:06Z
<p>I currently use <a href="http://www.strawberryperl.com" rel="nofollow">Strawberry Perl</a> as my primary Perl distribution. However, I have some applications that make Perl calls through cygwin. These generally fail because they are calling the version of Perl that was packaged with cygwin, and only looking in cygwin's lib folders. How can I modify my cygwin environment to call Strawberry Perl (and use the C:/strawberry/perl/lib dirs) instead?</p>
http://stackoverflow.com/questions/463947/how-can-i-modify-my-cygwin-environment-to-use-strawberry-perl-instead-of-the-pack/464205#464205-1Answer by Shannon Nelson for How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?Shannon Nelson2009-01-21T05:57:26Z2009-01-21T05:57:26Z<p>I don't have my cygwin machine nearby so I can't test this, but perhaps you can front-end the perl command with a script: go to /bin under cygwin and move the perl.exe there to something else like perl-org.exe, then set up a shell script that execs your other perl with the same arguments.</p>
http://stackoverflow.com/questions/463947/how-can-i-modify-my-cygwin-environment-to-use-strawberry-perl-instead-of-the-pack/464234#4642345Answer by cowgod for How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?cowgod2009-01-21T06:18:56Z2009-01-21T06:18:56Z<p>If you remove Perl from cygwin using the setup program it will use Strawberry Perl by default.</p>
<p>If you are unable to remove Perl from cygwin, you can create a symbolic link to the Perl executable from Strawberry.</p>
<p>From a cygwin shell, use the following set of commands:</p>
<pre><code>$ mv /usr/bin/perl /usr/bin/perl-cygwin
$ ln -s /cygdrive/c/strawberry/perl/bin/perl.exe /usr/bin/perl
</code></pre>
<p>This is assuming you used the default Strawberry Perl installer. Update your <code>perl.exe</code> location accordingly if you have it installed somewhere else.</p>
<p>Check to make sure the link is working properly by checking the Perl version:</p>
<pre><code>$ perl -v
</code></pre>
<p>It should say <strong>This is perl, (version) built for MSWin32-x86-multi-thread</strong> (or similar) and <em>not</em> <strong>built for cygwin-thread-multi-64int</strong>.</p>
http://stackoverflow.com/questions/463947/how-can-i-modify-my-cygwin-environment-to-use-strawberry-perl-instead-of-the-pack/471229#4712290Answer by brian d foy for How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?brian d foy2009-01-22T23:06:32Z2009-01-22T23:06:32Z<p>You can change your PATH to put the Strawberry directories first. Strawberry tries to be nice by putting its directories at the end of the PATH. If you installed from the .zip file, however, it didn't change the PATH at all.</p>
<p>You could move /usr/bin/perl, but that's a bad idea since it breaks when cygwin tries to update what it thinks is its perl. I just had that happen to me this week and used to happen to me on my Mac until I stopped playing with the system setup and installed my own stuff completely separate.</p>
http://stackoverflow.com/questions/463947/how-can-i-modify-my-cygwin-environment-to-use-strawberry-perl-instead-of-the-pack/516968#5169680Answer by skiphoppy for How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?skiphoppy2009-02-05T17:37:53Z2009-02-05T17:37:53Z<p>This is probably not a preferred solution, but you should be able to modify the #! line:</p>
<pre><code>#!/cygdrive/c/strawberry/perl/bin/perl5.10.0
</code></pre>
<p>I always refer to an explicit location and installation of perl, rather than relying on what is in /usr/bin.</p>
http://stackoverflow.com/questions/463947/how-can-i-modify-my-cygwin-environment-to-use-strawberry-perl-instead-of-the-pack/706153#7061530Answer by reinierpost for How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?reinierpost2009-04-01T15:50:20Z2009-04-01T15:50:20Z<p>I have two scripts that I use to modify the first line of Perl scripts to whichever Perl is first in my path: <a href="http://www.win.tue.nl/~rp/bin/rightperl" rel="nofollow">rightperl</a> hardcodes to the Perl that is first in my $PATH <em>now</em>, <a href="http://www.win.tue.nl/~rp/bin/envperl" rel="nofollow">envperl</a> will change the line to #!/usr/bin/env perl so the Perl to use is only picked at the time the script is invoked. Works really well under Cygwin (and from a Unix shell in general).</p>
http://stackoverflow.com/questions/463947/how-can-i-modify-my-cygwin-environment-to-use-strawberry-perl-instead-of-the-pack/1027552#10275521Answer by Ben for How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?Ben2009-06-22T14:34:39Z2009-06-22T15:02:06Z<p>One good thing I can add is that if you get the right perl to come first in the path, it should handle site-specific CPAN modules you may have installed with strawberry perl running in a CMD shell.</p>
<p>"which perl" is your friend.</p>
<p>If you had trouble with this, you could set the PERL5LIB environment variable, but it shouldn't be necessary.</p>
<p>I still pass in DOS-style file paths as parameters into the perl script, i.e. "d:\data\myfile.txt", not "/cygdrive/d/data/myfile.txt". So oddly enough, this mix of path notation works:</p>
<p>bash> /cygdrive/d/scripts/myscript.pl d:\data\myfile.txt</p>