Need help compiling Qt for embedded device (i.mx51 evk)
-
Hello.
Im trying to compile qt for an embedded device, the freescale i.mx51 EVK.
I've been following this "guide":http://www.imxdev.org/wiki/index.php?title=All_Boards_Qt, and have succeeded in compiling (and running) qt for X11 (i use ubuntu 10.04) and the Qvfb.
Where i fail, and sorely need assistance, is when i try to compile for the embedded device. The error i receive when i configure is;
The EGL functionality test failed!
EGL is required for OpenGL ES to manage contexts & surfaces.
You might need to modify the include and library search paths by editing
QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in
/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/mkspecs/qws/linux-mxc-g++.*I used the following configuration;
./configure -embedded arm -xplatform qws/linux-mxc-g++ -release -prefix /usr/local/Trolltech/Qt-target-version -qt-gfx-linuxfb -qt-kbd-tty -qt-mouse-tslib -opengl es2 -little-endian -host-little-endianI have checked the qmake.conf at this location, and doublechecked that the corresponding include, and library-files are at their respective places.
Excerpt from qmake.conf;
QMAKE_INCDIR_EGL = /tftpboot/ltib/usr/include/EGL
QMAKE_LIBDIR_EGL = /tftpboot/ltib/usr/lib
QMAKE_LIBS_EGL = -lEGLIf anyone could aid, it would be very appreciated. Ive been trying to fix this problem for the last three days.
Thanks for your time.
-almagest -
Hi!
And thanks for helping!g++ -c -o qxmlutils.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/include -I/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/include/QtCore -I/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/src/corelib/global -I/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/mkspecs/qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/src/corelib/xml/qxmlutils.cpp
g++ -o "/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/bin/qmake" project.o property.o main.o makefile.o unixmake2.o unixmake.o mingw_make.o option.o winmakefile.o projectgenerator.o meta.o makefiledeps.o metamakefile.o xmloutput.o pbuilder_pbx.o borland_bmake.o msvc_dsp.o msvc_vcproj.o msvc_nmake.o msvc_objectmodel.o symmake.o initprojectdeploy_symbian.o symmake_abld.o symmake_sbsv2.o qtextcodec.o qutfcodec.o qstring.o qtextstream.o qiodevice.o qmalloc.o qglobal.o qbytearray.o qbytearraymatcher.o qdatastream.o qbuffer.o qlist.o qfile.o qfsfileengine_unix.o qfsfileengine_iterator_unix.o qfsfileengine.o qfsfileengine_iterator.o qregexp.o qvector.o qbitarray.o qdir.o qdiriterator.o quuid.o qhash.o qfileinfo.o qdatetime.o qstringlist.o qabstractfileengine.o qtemporaryfile.o qmap.o qmetatype.o qsettings.o qlibraryinfo.o qvariant.o qvsnprintf.o qlocale.o qlinkedlist.o qurl.o qnumeric.o qcryptographichash.o qxmlstream.o qxmlutils.o
The EGL functionality test failed!
EGL is required for OpenGL ES to manage contexts & surfaces.
You might need to modify the include and library search paths by editing
QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in
/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/mkspecs/qws/linux-mxc-g++.Id be happy to supply more information if needed.
-a -
Hello again. Thanks for replies.
bq. Did you have the libgl-dev package installed?
Did you try to compile without opengl option?
Did you try to compile with only -opengl
Did you try to compile with other options like -opengl es1clI have the libgl-dev package.
Tried compiling without the opengl option (same .configure-line but omit "-opengl es2") results in tslib functionality failed, (the standard jabber) .. include and library.. QMAKE_INCDIR and QMAKE_LIBDIR.
Compiling with only -opengl gives same error as original post.
Compiling with -opengl es1cl also gives errors as the original post.However, i did notice an error (or warning - not sure) message in the beginning of all configuration variants;
You have not explicitly asked to use pkg-config and are cross-compiling. pkg-config will not be used to automatically query cflag/lib parameters for dependencies
Meanwhile i continue hunting the solution on the web.
- almagest
-
Im still struggling with these errors.
I have made a symbolic link to the path of my rootfs (for the target embedded device). This is to make the needed includes and libraries available to Qmake.
It seems as if qmake does not find these files. The files and headers are all there (tslib, opengl etc.), and according to the howto i followed (se first post) the symbolic link should solve this.
- almagest
-
Not easy to solve this problem, but note that you put some variable QMAKE???EGL on your qmake.conf but if I look on your "g++ -c -o qxmlutils.o -pipe -DQ..." command line, I don't see any of your EGL data...
So here are some ideas:
- Are you sure you read the right qmake.conf?
- re-compile your qt lib, then when its fails, try to re-launch the "g++ -c -o qxmlutils.o -pipe -DQ..." command alone on the right directory, with adding the "-L..." and/or "-I..." you suppose to be neccessary.
-
Hello again.
I've had some time to attack this problem further.
I decided to go for the -no-opengl option, to tackle one problem at the time.bq. Are you sure you read the right qmake.conf?
Im certain i read the right qmake.conf. I received a warning (QMAKE_LFLAGS_RPATH stuff) with full path that verified the qmake in question.
I still get the following error;
The tslib functionality test failed!
You might need to modify the include and library search paths by editing
QMAKE_INCDIR and QMAKE_LIBDIR in/home/ael/Downloads/qtimx/qt-everywhere-opensource-src-4.7.0/mkspecs/qws/linux-mxc-g++But think i can rule out the problem with compilation since the touchscreen binaries works on the target hw.
bq. re-compile your qt lib, then when its fails, try to re-launch the “g++ -c -o qxmlutils.o -pipe -DQ…” command alone on the right directory, with adding the ”-L…” and/or ”-I…” you suppose to be neccessary.
I started reading the executed command really thoroughly when i came over this detail;
-I/home/ael/Downloads/qt-imx/qt-everywhere-opensource-src-4.6.0/mkspecs/qws/linux-x86-g++
which really does not make sense, since i am compiling for arm architecture and have specified all my paths in ../qws/linux-mxc-g++.
Im just guessing here, but could this be the root of my problem?
Thanks for your time.
A. -
The problem was resolved by crosscompiling tslib from scratch. If i remember correctly, i also set CROSS_COMPILE=arm-none-linux-gnueabi . The opengl es error was due to an unreadable library. Found another one in another bsp-package. (not related to qt at all).
If any one wants more detail regarding any of this, ill answer to the best of my knowledge.
Dont hesitate to send me an email.And finally, thanks ngrosjean, for all the time invested. - You made a difference.
- a.
-
I got same problem with a mips platform, why tslib is related to opengl qt build?
Do you still need to specify the QMAKE_INCDIR and QMAKE_LIBDIR in the qmake.conf file? where is your opengl header/lib stored anyway, in the target rfs or in the host machine.Thanks
-
Its guess its related since Qt on Embedded devices has its own window manager (qws), and many devices take input from the touchscreen.
Yes, you still have to specify where the include and lib-files are, since they might be different from the host architecture. In my case, i had the rootfs on the host machine, in a directory named /tftp/rootfs/ where the usr/include and usr/lib resided. ( ex. /tftp/rootfs/usr/lib )I think its nicely explained here;
"Qt Tslib":http://doc.trolltech.com/4.4/qt-embedded-pointer.htmlHopefully that answered some of your questions.
I have one though, what is your issue? tslib, opengl, or both?
Regards
almagest -
I've been having similar compile problem with tslib:
The tslib functionality test failed!
I've tried the solution of almagest:
1 # export ARCH=arm
2 # export CROSS_COMPILE=yourCompiler(arm-none-linux-gnueabi?)by setting these variable in the terminal and then restart the compile of qt for the target (imx51 evk) but the problem is still there.
Am I doing something wrong? Do I have to install tslib-dev library on my host?
If anyone could aid, it would be very appreciated. I've been trying to fix this problem for the last days.
Thank you for your time.
bonilP.S.: I'll post more details later
-
As a general rule of thumb:
If you compile things you almost always want the dev-packages of the libs used on your machine. They usually provide the header files, which are needed in the include parts of the sources, and debug symbols (that may help later on).PS: I have no clue about Qt @ embedded, that's just a general rule to follow.
-
Probably I found out the problem:
QMAKE_INCDIR_OPENGL = /tftpboot/ltib/usr/include/GL
@$ ls /tftpboot/ltib/usr/include/GL
$ ls: cannot access /tftpboot/ltib/usr/include/GL: No such file or directory@
but the /GL folder does not exist.how do I have to build my LTIB? Do I have to compile it with FSL Gnome?
Can somebody help me?
-
hi, i’m using i.mx51 with ubuntu 10.04
I have qt-everywhere-opensource-src-4.6.0.tar.gz and trying to install QT for my target i.MX51 evk.
I hav done my configuration successfully and i’m getting errors while executing make command.
the configuration command i had given is :
$ ./configure -embedded arm -xplatform qws/linux-mxc-g++ -release -prefix /usr/local/Trolltech/Qt-target-version -qt-gfx-linuxfb -qt-kbd-tty -qt-mouse-pc -webkit -exceptions -verbose -little-endian -host-little-endiani had left openGL and tslib because i’m also getting errors with them related to “ qmake.conf “ file and my application doesn’t need those packages.
the error i’m getting while executing make command is:
—————————————————-/opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/../lib/gcc/arm-fsl-linux-gnueabi/4.4.4/../../../../arm-fsl-linux-gnueabi/bin/ld: cannot find -lglib-2.0
collect2: ld returned 1 exit status
make1: *** [../../lib/libQtCore.so.4.6.0] Error 1
make1: Leaving directory `/home/ubuntu10/qt-src-4.6.0/qt-target/src/corelib’
make: *** [sub-corelib-make_default-ordered] Error 2————————————————————————
Please help me in solving this …..
i hav been trying this from the last 10 days but i’m unable to crack these errors.if you know the compilation along with openGl ,es2, tslib,openssl then please help me in resolving those errors also….
——————————————————————————
if possible usend me your qmake.conf file
————————————————————————————— -
ngrosjean gave a good tip.
Also, sanjay1758, please dont post multiple identical posts on the same board.
It only creates confusion. "Your other thread":http://developer.qt.nokia.com/forums/viewthread/3693/
Hello.
When you try to compile for the target platform you have to point Qt toward the libraries compiled for that system. It is apparent that you miss the file libglib-2.0.so , either because the folder provided in qmake.conf is wrong or because the file simply isnt there. Obviously you cannot provide a path to your laptop/workstations version of these libraries to solve the issue.
If you use LTIB when setting up the image to be used on the card, look at the second link. It specifies that you use glib2.0 when you compile qt.
Regarding opengl, es2, tslib;
Tslib can be compiled from source (i did myself) to solve this issue.
You can also probably get away by copying the gl,es2 etc files from a precompiled image.
I have a Freescale i.MX51 EVK card, and downloaded a precompiled image from their website.
It contained all the files i needed to get these systems up and running.Most of the questions related to LTIB (ubuntu) can be seen here;
"Builing LTIB on Ubuntu 10.04
":http://imxcommunity.org/group/ubuntutipsandtricks/forum/topics/building-ltib-in-ubuntu-1004?xg_source=activityAs for compiling Qt for the Imx.51 EVK, look at this;
"All Boards Qt iMXwiki":http://www.imxdev.org/wiki/index.php?title=All_Boards_QtBest regards
almagest -
check the configure scripts. mostly it is failing trying to make sample opengl file in src/config.tests/unix/opengles* , where * is 1 or 2 depending on the version you are compiling. cd to the directory and do a make.
This is auto generated make file. If it fails, you will get the opengl configuration error while doing a configure also.
Try setting right values in the make file. If you are able to build this, set the same values in qmake.conf. -
Hi I tried to cross compile qt-everywhere-opensource-src-4.6.1 with openGL es2 support.
Details:
Host:Ubuntu 10.04.4 LTS
Target:ARM Cortex A8 (Freescale i.MX51 Processor)
Target Linux:linux-2.6.31.
Qt Version:4.6.1Steps i did are,
1.downloaded qt-everywhere-opensource-src-4.6.1.tar.gz from ftp://ftp.qt.nokia.com/qt/source/ [ftp.qt.nokia.com]
2.Copied mkspecs for arm-cortex_a8-linux-gnueabi-g++ and modified its qmake.conf as given – https://dl.dropboxusercontent.com/u/12382973/linux-g++-mx5x/qmake.conf [dl.dropboxusercontent.com] . 3.then configured as,@ ./configure -arch arm -xplatform linux-g++-mx5x -release -prefix / -multimedia -qt-gfx-linuxfb -qt-kbd-tty -little-endian -host-little-endian -fontconfig -sm -opengl es2@
And now i got the problem it shows,
“The EGL functionality test failed!
EGL is required for OpenGL ES to manage contexts & surfaces.
You might need to modify the include and library search paths by editing
QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in
/home/elangovan/qt-everywhere-opensource-src-4.6.1/mkspecs/linux-g++-mx5x”but in qmake.conf it has,
@ QMAKE_INCDIR_EGL = /usr/local/DigiEL-5.6/x-tools/arm-cortex_a8-linux-gnueabi/arm-cortex_a8-linux-gnueabi/sys-root/usr/include/EGL
QMAKE_LIBDIR_EGL = /usr/local/DigiEL-5.6/x-tools/arm-cortex_a8-linux-gnueabi/arm-cortex_a8-linux-gnueabi/sys-root/usr/libQMAKE_LIBS_EGL = -lEGL
@
when i use -v switching in config it gives errors as in the file – https://dl.dropboxusercontent.com/u/12382973/configError.txt [dl.dropboxusercontent.com]Have you successfully compiled?