How do you manage to run it on Raspberry Pi? I'm stuck with make, can't go further. Do you know any tutorial or discussions about this topic?
you need to make a swap file as the pi doesnt have enough ram.. run this
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile
then run the make command then delete sawp file
sudo swapoff /swapfile
sudo rm /swapfile