PDA

View Full Version : Configure flags for beagleboard?



AfouToPatisa
3rd February 2012, 03:26
Hello everyone! I'm new here and new to Qt programming!
Within the past week I managed to write a little app by some video tutorials out there. My problem is now I want to run this app on my Beagleboard revC4.

What I did now is I downloaded the qt-everywhere and ran configure on it and also downloaded arm-linux-gnueabi-g++ / arm-linux-gnueabi-gcc and. The flags i used were:
./configure -embedded arm -lrt -little-endian
arm because beagleboard is arm, little endian because it required me to put in something for endian (and afaik BB is little endian), and finally lrt because I was getting errors without it.

Now everything compiled after running make and sudo make install. So I took the whole folder and put it on my beagleboard and then ran the "composition" demo to check. Initially it failed but I exported the Qt library folder with export so after this I am getting an "undefined symbol _ZNK11...blabla" error. I am pretty sure my mistake has to do with the configure line above am I right? Also my program has to use the touchscreen and networking too!

THANK YOU very much in advance guys!
Bill