Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Obtaining perl-5.6.2 for modern Ubuntu

by contra-sh (Acolyte)
on Mar 22, 2020 at 17:30 UTC ( [id://11114546]=note: print w/replies, xml ) Need Help??


in reply to Obtaining perl-5.6.2 for modern Ubuntu

Hello, I managed to have perl 5.6 on Ubuntu 18.04.1. I'm doing 2 things :
  • Use patchperl (just mandatory when you want to build old perl on recent distributions)
  • Add the -lm to the cc -o miniperl ... (in the middle of the make step) - we add it through the configure script (-Alibs='-lm')
wget https://www.cpan.org/src/5.0/perl-5.6.2.tar.gz tar xvzf perl-5.6.2.tar.gz sudo cpanm Devel::PatchPerl patchperl perl-5.6.2 cd perl-5.6.2 ./Configure -des -Dprefix=/opt/perl5.6 -Aldflags='-lm' make sudo make install
Hope it will help you (if you don't want to use perlbrew).


Rgds,

Thibault

Replies are listed 'Best First'.
Re^2: Obtaining perl-5.6.2 for modern Ubuntu
by syphilis (Archbishop) on Mar 23, 2020 at 00:18 UTC
    I managed to have perl 5.6 on Ubuntu 18.04.1

    Thanks for this - just the sort of approach I needed to see !
    Nothing wrong with perlbrew's capability to build perl-5.6.2, but this approach makes the procedure clearer, and also saves me having to find out how to influence the Configure flags with perlbrew.
    Following those instructions, I built and installed a -Duselongdouble build of perl-5.6.2. (It failed only 2 tests of the test suite.)

    BTW, you missed out the tar zxvf perl-5.6.2.tar.gz step, which was enough to befuddle me for longer than I care to admit ;-)
    (I recommend that you correct that.)

    Cheers,
    Rob

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11114546]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (6)
As of 2024-04-24 09:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found