With perlbrew, can I make a few architecture installations?

I would like to be able to install multiple versions of Perl, but I also need to have them in architecture.

I know that I can use perlbrew to get the version settings: 5.10.1, 5.12.3, 5.16.0, etc. I could not find a way to have installations on the Solaris-sparc, Solaris-x86, Linux-i686, Linux-x86_64 architectures, etc.

Performing a manual installation I can do this

It's okay to do it manually, but perlbrew simplifies some aspects of management, etc.

EDIT: As shown in the comments, I use a shared NFS home directory installed on different platforms.

+5
source share
1 answer

--as perlbrew install, ( ), Configure -D, -U -A perlbrew, . , perl perlbrew.

32- perl 64- perlbrew:

perlbrew install perl-5.8.8 --as perl-5.8.8-i386-linux-thread-multi -Dcc='cc -m32' -Dplibpth='/lib64 /usr/lib64 /usr/lib/ /usr/lib/x86_64-linux-gnu/' -Darchname=i386-linux-thread-multi -Dusethreads

, Configure -D, .

+4

All Articles