Re: Cross Compiling for MIPS
Hey Wayne,
I have Qt Creator installed on my machine, so I'm not sure exactly where Qt is installed when you do a package based install. You may want to check the following path though: /usr/qt
If you don't find it in that directory, you may want to run the following sequece of commands:
cd / (this gets you to the topmost directory)
find . -name "qmake" -print (this may take a bit, but if you see where qmake is located and go to that directory, look at the contents of that directory with a "ls -la" command. You should see "configure" located in the same directory. You can run "./configure -help" to get an idea of how to configure Qt for the mips architecture.)
The link posted below may help as well:
http://doc.trolltech.com/4.6/qt-embedded-linux.html (under Getting Started)
Hope this helps.