### Target Arch ARCH = arm #ARCH = i386-pc #ARCH = sh4 #ARCH = mips #ARCH = mipsel #ARCH = ppc ## Specific arm #CONFIG_TARGET_ARM_SA11X0 = 1 #CONFIG_TARGET_ARM_XSCALE = 1 ### Target OS OS = linux #OS = solaris2.8 #### You need a working and tested cross-compiler for your build and target combination. The binary directory must be in your path. 1) You should be reading me (README) in perl-5.x.y/Cross 2) Make sure you are in the Cross directory. 3) Edit the file 'config' to contain your target platform information. 4) make patch ## This will patch the existing source-tree. 5) make perl ## Will make perl #### root@guo-qijiang-desktop:/tmp/perl-5.10.1/Cross# make patch cd .. ; if [ ! -e ./CROSS_PATCHED ] ; then \ patch -p1 < Cross/Makefile.SH.patch; \ patch -p1 < Cross/installperl.patch ; mv installperl installperl-patched; \ sed -e 's/XXSTRIPXX/arm-linux/' installperl-patched > installperl; \ touch CROSS_PATCHED ; fi root@guo-qijiang-desktop:/tmp/perl-5.10.1/Cross#