Other Parts Discussed in Thread: OMAP-L138
Hello: I have Qt Creator 2.1.0 with Qt 4.6.3 (32 bit) running under Ubuntu 10.04.LTS with a target of a OMAP-L138 evaluation board.
I went in to Qt Creator Tools-->Options-->Qt4
6786.Qtcreator_loc.pdf
Note the Auto-detected Qt in PATH is finding the correct qmake I wish to use.
/home/user/ti-dvsdk_omapl138-evm_4_02_00_06/linux-devkit/bin/qmake
Things I note:
1 there is no mkspec:
2 there is a message at the bottom of Qt Creator Tools-->Options-->Qt4
Qt version is not properly installed, please run make install.
--------------------------------------------------------
From the http://developer.qt.nokia.com/forums I have learned that
The message "Qt version is not properly installed, please run make install." is triggered by the following
This message is triggered in the following conditions:
* The directory QT_INSTALL_BINS points to does not exist
* The directory QT_INSTALL_HEADERS points to does not exist
Please check the output of “qmake -query” to get the values for those settings.
Running “make install” after building Qt will make sure everything is in the correct place.
--------------------------------------------------------
My ./qmake -query shows the following.
QT_INSTALL_PREFIX:/linux-devkit
QT_INSTALL_DATA:/linux-devkit
QT_INSTALL_DOCS:/linux-devkit/doc
QT_INSTALL_HEADERS:/linux-devkit/include
QT_INSTALL_LIBS:/linux-devkit/lib
QT_INSTALL_BINS:/linux-devkit/bin
QT_INSTALL_PLUGINS:/linux-devkit/plugins
QT_INSTALL_TRANSLATIONS:/linux-devkit/translations
QT_INSTALL_CONFIGURATION:/etc/xdg
QT_INSTALL_EXAMPLES:/linux-devkit/examples
QT_INSTALL_DEMOS:/linux-devkit/demos
QMAKE_MKSPECS:/linux-devkit/mkspecs
QMAKE_VERSION:2.01a
QT_VERSION:4.6.3
--------------------------------------------------------
Further I am unable to find any path to any ware on the system where they might be. I would expect to see something like "
xxQtEmbedded(or ?) then
/bin
/examples
/include
/lib
/plugins
/translations
etc....
Is this because the DVSDK does not install / contain / have the complete qmake environment ?
Any suggestions on getting QtCreator to work with the supplyed qmake from the DVSDK for OMAP-L138 ?
I have been attempting to install / build a fresh copy of qt, but have only run into issues there...
That is another thread I posted on this forum, please see it as well..
Has anyone managed to get QtCreator to work on this platform.... I do see there have been some progress on OMAP3x,
http://e2e.ti.com/support/dsp/omap_applications_processors/f/447/p/85114/293717.aspx#293717
But then ther also seems to be issuse that were never answered or finilised in the e2e as well....
Note: Yes, I can build / compile / on the host environment, and run on the OMAP-L138 target some of the qt examples with the current DVSDK installed environment using the command line i.e.
sd <directory where the applaciation source is>
qmake -project
qmake
make
Not sure how that works (qt nubee) when paths to qmake are incorrect and non existent as shown above in the ./qmake -query above ?
Any help would be welcome... Thanks