In order to create an QT application to run on the Atmel SAMA5D4 Xplained Ultra board, I did the following:
1. From the Linux4SAM PokyBuild < Linux4SAM < TWiki page:
a) bitbake meta-toolchain-qte
b) sudo tmp/deploy/sdk/poky-eglibc-i686-meta-toolchain-qte-cortexa5t2hf-vfp-neon-toolchain-qte-1.6.1.sh
c) source /opt/poky/1.6.1/environment-setup-cortexa5t2hf-vfp-neon-poky-linux-gnueabi
2. From the QT tutorial Getting Started Programming with Qt | Qt 4.8:
a) create ~/try_qt/hello.cpp using the code snippet from the tutorial
b) qmake -project
c) qmake
d) make
3. Copy the resultant executable (try_qt) over a thumb drive and then plug the thumb drive into the Atmel board
4. Connect to the board using putty, mount the thumb drive at /media/david, and move to that directory
5. Run the executable
a) ./try_qt -qws
Here's what it looks like:
The image that I used was the "atmel-qt4e-demo-image" that i built earlier.
Top Comments