From 8ddf2e94df70707b458528a437759b96046d3e01 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 26 Nov 2013 10:36:10 -0800 Subject: Huge update. Moved all posts from textile to markdown. Updated all the CSS and styles. Added a new page for the resume. --- _posts/2008-06-30-upgrading-to-perl-5.10.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 _posts/2008-06-30-upgrading-to-perl-5.10.md (limited to '_posts/2008-06-30-upgrading-to-perl-5.10.md') diff --git a/_posts/2008-06-30-upgrading-to-perl-5.10.md b/_posts/2008-06-30-upgrading-to-perl-5.10.md new file mode 100644 index 0000000..9746ac4 --- /dev/null +++ b/_posts/2008-06-30-upgrading-to-perl-5.10.md @@ -0,0 +1,25 @@ +--- +layout: post +summary: In which we upgrade to Perl 5.10. +title: Upgrading to perl 5.10 +--- + +Get the list of your installed 5.8 modules: + +{% highlight sh %} +% perl -MExtUtils::Installed -e'print join("\n", new ExtUtils::Installed->modules)' > module.list +{% endhighlight %} + +then install Perl 5.10: + +{% highlight sh %} +% wget http://www.cpan.org/src/perl-5.10.0.tar.gz +% tar xzf perl-5.10.0.tar.gz +% cd perl-5.10.0 +% sh Configure -de -Dprefix=/opt/perl -Duserelocatableinc +% make && make test +% sudo make install +% /opt/perl/bin/perl -e 'use feature qw(say); say "hi"' +{% endhighlight %} + +and then re-install your modules with `cpan \`cat module.list\``. -- cgit v1.2.3