in reply to Cross compile perl for arm-linux

You might try passing some flags to Configure. For example:
sh ./Configure -Dusecrosscompile -Dtargethost=<IP of ARM computer> -Dtargetuser=<user name> -Dtargetarch=arm-linux -Dcc=arm-linux-gcc -Dusrinc=</your/path-to/arm-none-linux-gnueabi/include/> -Dincpth=</your/path_to//arm-none-linux-gnueabi/include/> -Dlibpth=</your/path_to/lib> -Dtargetdir=</your/path_to/dir>
You can get the CROSS/Readme here. There's also perl-cross-arm.

Replies are listed 'Best First'.
Re^2: Cross compile perl for arm-linux
by Anonymous Monk on May 12, 2011 at 13:02 UTC
    Why go to some url when there is a Cross directory/readme in the perl tree?
Re^2: Cross compile perl for arm-linux
by szr (Scribe) on Sep 07, 2012 at 05:39 UTC
    How would one cross compile if they already have a compiler for the target arch already setup on their system, so the building can be done locally and then copied later after the build to the intended system, instead of ssh'ing and building on the intended system?