This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
OS X versioning dance.
[perl5.git] / README.android
index fc1d7fa..b774d9f 100644 (file)
@@ -18,7 +18,7 @@ perl native using one of the toolchains available on the Play Store.
 This document describes how to set up your host environment when
 attempting to build Perl for Android.
 
-=head1 Cross-Compiling
+=head1 Cross-compilation
 
 These instructions assume an Unixish build environment on your host system;
 they've been tested on Linux and OS X, and may work on Cygwin and MSYS.
@@ -74,7 +74,7 @@ in general, if you can connect your device to the host using a USB port,
 or if you don't feel like installing an sshd app on your device,
 you may want to use adb, although you may be forced to switch to ssh if
 your device is not rooted and you're unlucky -- more on that later.
-Alternatively, if you're cross-compiling for an emulator, you'll have to
+Alternatively, if you're cross-compiling to an emulator, you'll have to
 use adb.
 
 =head3 adb
@@ -117,7 +117,7 @@ device.  Either try rooting it, or go for the ssh route.
 
 To use ssh, you'll need to install and run a sshd app and set it up
 properly.  There are several paid and free apps that do this rather
-easily, so you should be able to spot one easily.
+easily, so you should be able to spot one on the store.
 Remember that Perl requires a passwordless connection, so set up a 
 public key.
 
@@ -190,9 +190,9 @@ in.  For example, CCTools installs its toolchain in
 /data/data/com.pdaxrom.cctools/root/cctools.  With the path in hand,
 compiling perl is little more than:
 
   export SYSROOT=<location of the native toolchain>
   export LD_LIBRARY_PATH="$SYSROOT/lib:`pwd`:`pwd`/lib:`pwd`/lib/auto:$LD_LIBRARY_PATH"
   sh Configure -des -Dsysroot=$SYSROOT -Alibpth="/system/lib /vendor/lib"
+ export SYSROOT=<location of the native toolchain>
+ export LD_LIBRARY_PATH="$SYSROOT/lib:`pwd`:`pwd`/lib:`pwd`/lib/auto:$LD_LIBRARY_PATH"
+ sh Configure -des -Dsysroot=$SYSROOT -Alibpth="/system/lib /vendor/lib"
 
 =head1 AUTHOR