An adoption of https://pypy.readthedocs.org/en/release-2.4.x/arm.html
mkdir crosscompiler
cd crosscompiler/
git clone git://github.com/raspberrypi/tools.git --depth 1
cd ..
mkdir rasbian
qemu-debootstrap --no-check-gpg --variant=buildd --arch=armhf wheezy rasbian http://archive.raspbian.org/raspbian
cp /usr/bin/qemu-arm-static rasbian/usr/bin/
vim /etc/schroot/schroot.conf
sb2-init -c /usr/bin/qemu-arm ARM /root/crosscompiler/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/bin/arm-linux-gnueabihf-gcc
Description of compilation options: http://doc.pypy.org/en/latest/config/commandline.html
Under normal circumstances, you should leave out the --no-allworkingmodules –withmod-__builtin__
options.
export SB2=/root/rasbian
export SB2OPT='-t ARM'
pypy pypy/rpython/bin/rpython -O2 --platform=arm --gcrootfinder=shadowstack --jit-backend=arm --no-shared pypy/pypy/goal/targetpypystandalone.py --no-allworkingmodules –withmod-__builtin__
cp pypy-c rasbian/
schroot -c rasbian
/pypy-c