http://www.perlmonks.org?node_id=1015382

Steve_BZ has asked for the wisdom of the Perl Monks concerning the following question:

Hi Guys,

I'm just going through the steps to install Perl on Android (see here: http://code.google.com/p/perldroid/wiki/Compiling5160).

It uses Perl 5.16.

As I'm currently working on Kubuntu 12.04 lts with Perl 5.14, I don't really want to disturb my current development. So what are your thoughts. Should I just upgrade my Perl to 5.16, and it'll all be fine, or should I (read "is there a way to") isolate the two Perls.

What are your thoughts.

Regards

Steve.

Replies are listed 'Best First'.
Re: Perl on Androids
by Corion (Patriarch) on Jan 25, 2013 at 17:36 UTC

    I would assume that the same steps apply to Perl 5.14.

    See perlbrew for a way to keep different versions of Perl separate.

    If you're considering Perl on Android, I recommend talking to castaway, as she's working on cross-compiling Perl for Android. I assume that she also has Perl already running on Android directly.

      Thanks for that, Steve.

Re: Perl on Androids
by tobyink (Canon) on Jan 26, 2013 at 03:35 UTC

    Here is a resource for pearls on an android.

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
Re: Perl on Androids
by jmlynesjr (Deacon) on Jan 26, 2013 at 03:10 UTC

    Citrus Perl is an easy install. I use it on Ubuntu 10.10.

    James

    There's never enough time to do it right, but always enough time to do it over...