You are not logged in.

Dear visitor, welcome to QtForum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

1

Friday, February 3rd 2012, 2:46am

Configure flags for beagleboard?

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