raspberry-qt Compile and hello world
https://gitorious.org/raspberry-qt/raspberry-qt/source/3c2ed05270137644300cde3b22829380698ff9a9:README.txt#L1 === BUILDING CROSS-COMPILED QT 5 FOR RASPBERRY PI === Based on http://qt-project.org/wiki/RaspberryPi_Beginners_guide 2/26/2013 1) Create a directory $ mkdir ~/opt $ cd ~/opt 2) Download the latest version of Raspbian (http://www.raspberrypi.org/downloads): $ wget http://files.velocix.com/c1410/images/raspbian/2013-02-09-wheezy-raspbian/2013-02-09-wheezy-raspbian.zip 3) Unzip the image and mount the root filesystem: $ unzip 2013-02-09-wheezy-raspbian.img $ sudo mkdir /mnt/rasp-pi-rootfs $ sudo mount -o loop,offset=62914560 2013-02-09-wheezy-raspbian.img /mnt/rasp-pi-rootfs 4) Download and extract Donald's toolchain: $ wget http://swap.tsmt.eu/gcc-4.7-linaro-rpi-gnueabihf.tbz $ tar -xf gcc-4.7-linaro-rpi-gnueabihf.tbz 5) Clone the cross-compile tools $ git clone git://gitorious.org/raspberry-qt/raspberry-qt.git 6) Fix absolute paths in the Raspberry Pi imag...