<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Building Qt for i.MX5x in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153776#M1770</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply . I am using this toolchain gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12 for manual cross compilation. I couldnt use this toolchain in yocto. Is there any specific configuration needed for this ? Could you share your points here? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Feb 2013 05:55:40 GMT</pubDate>
    <dc:creator>kesavamoorthy</dc:creator>
    <dc:date>2013-02-26T05:55:40Z</dc:date>
    <item>
      <title>Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153705#M1699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I recently had the need to build Qt for the i.MX53 platform so thought I'd document the steps I had to go through here as had to jump through a few hoops to get it to build. If anyone has had similar experiences please share as I know some of the cross compilation difficulties can be somewhat host dependent.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; This example has OpenGL ES support and runs under X11 via Xfbdev. Examples for building for OpenGL ES2.0 as well as OpenGL ES1.0 are given.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I borrowed heavily from the &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.imxdev.org%2Fwiki%2Findex.php%3Ftitle%3DAll_Boards_Qt" rel="nofollow" target="_blank"&gt;http://www.imxdev.org/wiki/index.php?title=All_Boards_Qt&lt;/A&gt;&lt;SPAN&gt; site, but I have fully documented the steps required here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; These instructions are based on the 11.03 Linux BSP, and the 4.7.2 release of Qt.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; text-decoration: underline;"&gt;HOST SETUP&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; My build system was an up to date ubuntu 10.10 (64-bit) machine. It is assumed the reader is familiar with how to use LTIB. Reference the "ltib_build_host_setup.pdf" file in the linuxdocs package in the latest BSP release for details on how to setup a host to build ltib, but the below shell script may be used to install required packages for an Ubuntu host.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; # ---------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; #!/bin/bash&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; # Install packages needed by LTIB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sudo apt-get -y install gettext libgtk2.0-dev rpm bison m4 libfreetype6-dev&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sudo apt-get -y install libdbus-glib-1-dev liborbit2-dev intltool&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sudo apt-get -y install ccache ncurses-dev zlib1g zlib1g-dev gcc g++ libtool&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sudo apt-get -y install uuid-dev liblzo2-dev&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sudo apt-get -y install tcl dpkg&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; # Packages required for 64-bit Ubuntu&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; # Do "uname -a" and see if the word "x86_64" shows up.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; if uname -a|grep -sq 'x86_64'; then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sudo apt-get -y install ia32-libs libc6-dev-i386 lib32z1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; fi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; # ---------------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; For the host setup to build Qt, start by making sure all of the following packages are installed. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libx11-dev&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libpng-dev&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libjpeg-dev&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libxext-dev&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; x11proto-xext-dev&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; qt3-dev-tools-embedded&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libxtst-dev &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I also installed the following packages mentioned at the bottom of &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Ftrac.webkit.org%2Fwiki%2FBuildingQtOnLinux" rel="nofollow" target="_blank"&gt;http://trac.webkit.org/wiki/BuildingQtOnLinux&lt;/A&gt;&lt;SPAN&gt; when trying to fix various problems. Not sure if any of them are actually required, but shouldn't hurt.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo apt-get install bison flex libqt4-dev libqt4-opengl-dev libphonon-dev libicu-dev libsqlite3-dev libxext-dev libxrender-dev gperf libfontconfig1-dev libphonon-dev g++&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Below is a dump of everything qt related I have installed on my host:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ dpkg --get-selections | grep qt&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt3-compat-headers&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt3-headers&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt3-mt&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt3-mt-dev&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-dbus&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-declarative&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-designer&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-dev&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-help&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-network&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-opengl&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-opengl-dev&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-qt3support&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-script&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-scripttools&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-sql&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-sql-mysql&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-svg&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-test&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-webkit&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-xml&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqt4-xmlpatterns&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqtcore4&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqtgui4&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqtwebkit-dev&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; libqtwebkit4&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; qt3-dev-tools&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; qt3-dev-tools-embedded&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; qt4-qmake&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; text-decoration: underline;"&gt;BUILD LTIB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; At the time of this writing, the latest BSP for the i.MX53 is 11.03.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; This can be downloaded from Freescale's website here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.freescale.com%2Fwebapp%2Fsps%2Fsite%2Fprod_summary.jsp%3Fcode%3Di.MX535%26fpsp%3D1%26tab%3DDesign_Tools_Tab" rel="nofollow" target="_blank"&gt;http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=i.MX535&amp;amp;fpsp=1&amp;amp;tab=Design_Tools_Tab&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; You'll want both the BSP source and the Multimedia codecs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Build LTIB with the following packages included (just pick Min profile when initially running ltib config). Make sure to download and copy the multimedia codecs to /opt/freescale/pkgs, and check the patch that is also required for gst-fsl-plugin-1.9.8 in the 11.03 BSP release.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * amd-gpu-x11-bin-mx51&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * libz160-bin&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * Freescale Multimedia Plugins/Codecs - fsl-mm-codec-libs &amp;amp; gstreamer-fsl-plugins&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * fontconfig&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * freetype&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * glib2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer-plugins-base&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer-plugins-good&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer-plugins-bad&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer-plugins-ugly&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * Liberation fonts&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * libjpeg&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * libpng&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * liboil&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * libxml2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * mysql&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * tslib&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * X11 (X.Org 7.5)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * X11/libICE&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * X11/libSM&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * zlib &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; My ltib directory was at /home/matt/imx/mx53/11.03/ltib - make sure to modify the succeeding instructions accordingly based on where you install ltib on your system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; After you build ltib, cd to your ltib/rootfs/usr/lib directory and do the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; sudo ln -s libgsl-fsl.so libgsl.so&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; After building ltib, make a symbolic link /tftpboot/ltib pointing to your rootfs folder. This is needed to make the i.MX libs and incs available to qmake.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ ln -s &amp;lt;rootfs folder dir&amp;gt; /tftpboot/ltib&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; For my example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ ln -s /home/matt/imx/mx53/11.03/ltib/rootfs /tftpboot/ltib&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; The instructions at the imxdev site also recommend restarting the nfs server (below command). This is only needed if you're mounting your rootfs via NFS. This step has no impact on the Qt build. I typically copy my rootfs to an SD card, so I skip this step.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo /etc/init.d/nfs-kernel-server restart&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; text-decoration: underline;"&gt;RUN QMAKE AND BUILD QT&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Download the latest qt-everywhere-opensource release from &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fget.qt.nokia.com%2Fqt%2Fsource" rel="nofollow" target="_blank"&gt;http://get.qt.nokia.com/qt/source&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; As of this writing the latest release is 4.7.2:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fget.qt.nokia.com%2Fqt%2Fsource%2Fqt-everywhere-opensource-src-4.7.2.tar.gz" rel="nofollow" target="_blank"&gt;http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.7.2.tar.gz&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Download and copy the qt-everywhere-opensource-src-4.7.2.tar.gz tar file to the directory where you'll build qt, and untar:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ tar zxvf qt-everywhere-opensource-src-4.7.2.tar.gz&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; For the cross compiler path, after installing the 11.03 BSP release and running ltib, you should have this installed at /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin. I put the full cross compile path in my qmake.conf as I would sometimes have problems during the Qt build without this. Hence you shouldn't need to export the cross compiler path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Copy the attached mkspecs.mx5x.tar.gz to qt-everywhere-opensource-src-4.7.2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ tar zxvf mkspecs.mx5x.tar.gz&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; This will put the qmake.conf at mkspecs/linux-g++-mx5x. Assuming you have the cross compiler installed in the default location noted above you shouldn't need to change anything in qmake.conf.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; text-decoration: underline;"&gt;To build Qt with OpenGL ES2.0 support&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ ./configure -arch arm -xplatform linux-g++-mx5x -release -prefix /tftpboot/ltib/usr/local/Trolltech/Qt-4.7.2-mx5x-x11 -multimedia -phonon -phonon-backend -qt-gfx-linuxfb -qt-kbd-tty -little-endian -host-little-endian -fontconfig -sm -opengl es2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ make&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; On my system, I had 3 spots where the build crashed. Not sure if this was specific to something on my system, or if something everyone will see. Bonus points for anyone who's able to figure these out.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Below are the signatures of the failures and how to get around them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; First crash:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[1]: *** No rule to make target `../JavaScriptCore/release/libjscore.a', needed by `../../../../lib/libQtWebKit.so.4.7.2'.&amp;nbsp; Stop.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[1]: Leaving directory `/home/matt/qt/target_builds/mx53/11.03/qt-everywhere-opensource-src-4.7.2/src/3rdparty/webkit/WebCore'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make: *** [sub-webkit-make_default-ordered] Error 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; To fix:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd src/3rdparty/webkit/JavaScriptCore/release/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cp jscore. libjscore.a&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd -&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ make&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Second crash:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; /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 -lpnp_basictools&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; collect2: ld returned 1 exit status&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[3]: *** [plugandpaint] Error 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[3]: Leaving directory `/home/matt/qt/target_builds/mx53/11.03/qt-everywhere-opensource-src-4.7.2/examples/tools/plugandpaint'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[2]: *** [sub-plugandpaint-make_default-ordered] Error 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[2]: Leaving directory `/home/matt/qt/target_builds/mx53/11.03/qt-everywhere-opensource-src-4.7.2/examples/tools'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[1]: *** [sub-tools-make_default] Error 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[1]: Leaving directory `/home/matt/qt/target_builds/mx53/11.03/qt-everywhere-opensource-src-4.7.2/examples'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make: *** [sub-examples-make_default-ordered] Error 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; To fix:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd examples/tools/plugandpaint/plugins/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cp pnp_basictools. libpnp_basictools.a&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd -&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ make&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Third crash:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; /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 -ldemo_shared&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; collect2: ld returned 1 exit status&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[2]: *** [deform] Error 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[2]: Leaving directory `/home/matt/qt/target_builds/mx53/11.03/qt-everywhere-opensource-src-4.7.2/demos/deform'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[1]: *** [sub-deform-make_default] Error 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[1]: Leaving directory `/home/matt/qt/target_builds/mx53/11.03/qt-everywhere-opensource-src-4.7.2/demos'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make: *** [sub-demos-make_default-ordered] Error 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; To fix:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd demos/shared/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cp demo_shared. libdemo_shared.a&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd -&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ make&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; After the make completes successfully, do the following to install Qt to your rootfs:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo make install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; This will install to the directory you have defined in the -prefix switch when you ran configure. In my example this is /tftpboot/ltib/usr/local/Trolltech/Qt-4.7.2-mx5x-x11.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; If you want the fluidlauncher demo (referenced later), you'll need to build and copy this manually to the rootfs. The following will do this as well as everything at demos/embedded:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd qt-everywhere-opensource-src-4.7.2/demos/embedded&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ make&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo make install&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd fluidlauncher&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ make&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd ..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo cp -r fluidlauncher /tftpboot/ltib/usr/local/Trolltech/Qt-4.7.2-mx5x-x11/demos/embedded&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Not sure why make install doesn't work in the fluidlauncher demo, but copying the executable directly works fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Copy the libs from usr/local/Trolltech/Qt-target-version/lib/ to usr/lib/:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo cp -a /tftpboot/ltib/usr/local/Trolltech/Qt-target-version/lib/* /tftpboot/ltib/usr/lib/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; In my example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo cp -a /tftpboot/ltib/usr/local/Trolltech/Qt-4.7.2-mx5x-x11/lib/* /tftpboot/ltib/usr/lib/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Now the rootfs should be ready to either NFS mount, or copy to an SD card. See the instructions at the end of the setup for details on copying the bootloader, kernel, and rootfs to an SD card.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; text-decoration: underline;"&gt;Starting QT Demos and Examples&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Boot the i.MX53 board, then from the console, start X11 using the command:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; export DISPLAY=:0.0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Xfbdev -mouse mouse,,device=/dev/input/mice -keybd keyboard,,/dev/input/event2 &amp;amp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; This will start X11 with USB mouse and keyboard support and return the command prompt.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; There are several demos and examples on folder /usr/local/Trolltech/Qt-target-version. The demo below shows OpenGLES 2.0 functionality:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; cd /usr/local/Trolltech/Qt-target-version/demos/pathstroke&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; ./pathstroke&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Another good one is the fluidlauncher demo at /usr/local/Trolltech/Qt-target-version/demos/embedded/fluidlauncher&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; ./fluidlauncher&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; In some of the fluidlauncher demos (i.e., the Pathstroke and Qt magnifying glass), if you click on the window, you'll see an OpenGL button that enables/disables OpenGL. Note I was seeing some color issues with the below message in the console when I enabled OpenGL in the fluidlauncher demo. Need to try to figure this one out.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Warning: EGL suggested using X Visual ID 33 (ARGB0565) for EGL config 15 (ARGB1555), but this is incompatable&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; text-decoration: underline;"&gt;To build Qt with OpenGL ES1.0 support&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; If you need OpenGL ES1.0 support (i.e. - if you have existing Qt OpenGL 1.0 apps that you want to test), everything is the same as what's described above, with a couple exceptions as described below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; The first thing you'll need to change is go to the qt-everywhere-opensource-src-4.7.2/mkspecs/linux-g++-mx5x directory, and you'll note there are separate qmake.conf files for OpenGL ES1 and ES2. The primary difference between these files is modifying QMAKE_LIBS to include either -lGLESv2, or -lGLESv1_CM (I had trouble getting OpenGL to work if both were included).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Also, when you run configure you'll set the -opengl switch to "es1" instead of "es2":&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ ./configure -arch arm -xplatform linux-g++-mx5x -release -prefix /tftpboot/ltib/usr/local/Trolltech/Qt-4.7.2-mx5x-x11 -multimedia -phonon -phonon-backend -qt-gfx-linuxfb -qt-kbd-tty -little-endian -host-little-endian -fontconfig -sm -opengl es1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ make&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; You'll hit the same 3 build errors as when building for OpenGL ES2.0 that you'll work around the same way as described above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Note there is one additional problem you'll hit when building with the "es1" switch you'll need to work around. The signature of this crash is as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; In file included from ../../include/QtOpenGL/private/qpaintengine_opengl_p.h:1,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from qpixmapdata_x11gl_egl.cpp:54:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; ../../include/QtOpenGL/private/../../../src/opengl/qpaintengine_opengl_p.h:150: error: 'GLenum' has not been declared&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[1]: *** [.obj/release-shared/qpixmapdata_x11gl_egl.o] Error 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make[1]: Leaving directory `/home/matt/qt/target_builds/mx53/11.03/es1/qt-everywhere-opensource-src-4.7.2/src/opengl'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; make: *** [sub-opengl-make_default-ordered] Error 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; To work around this, copy the attached qt_qpaintengine_gles1.patch to qt-everywhere-opensource-src-4.7.2 and apply:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ patch -p1 &amp;lt;qt_qpaintengine_gles1.patch &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; patching file src/opengl/qpaintengine_opengl_p.h&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; This can be done before you run configure. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; text-decoration: underline;"&gt;Prepping an SD card&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; This info is available in the linux BSP user's guide, but is included here for completeness. In the below example, /dev/sdx should be replaced by whatever the device note is for your SD card reader (do "dmesg" after you insert your SD card and that should tell you).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo umount /dev/sdx*&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd /tftpboot/ltib/boot/&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo dd if=u-boot.bin of=/dev/sdx bs=512 &amp;amp;&amp;amp; sync &amp;amp;&amp;amp; sync&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo dd if=uImage of=/dev/sdx bs=512 seek=2048 &amp;amp;&amp;amp; sync &amp;amp;&amp;amp; sync&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo fdisk /dev/sdx&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; Command (m for help): u&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; Command (m for help): n&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; Command action&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; e&amp;nbsp;&amp;nbsp; extended&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; p&amp;nbsp;&amp;nbsp; primary partition (1-4)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; p&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; Partition number (1-4): 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; First sector (62-7744511, default 62): 8192&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; Last sector, +sectors or +size{K,M,G} (8192-7744511, default 7744511): (Just hit return, your ending sector may be different)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; Command (m for help): w&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo mkfs.ext3 /dev/sdx1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo mkdir /media/sd_mount&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo mount /dev/sdx1 /media/sd_mount&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ cd /tftpboot/ltib&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo cp -rpa [A-z]* /media/sd_mount&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sync&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$ sync&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; $ sudo umount /dev/sdx*&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; The SD card should now be ready to boot.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Note you'll need to setup the u-boot environment variables the first time you boot so the kernel command line and various variables to set the display, etc... are set. This is going to be specific to the board you're using. Consult the BSP user's guide and release notes for your board for the specifics here. This procedure was tested on an MX53EVK (an early eval board), but no reason it shouldn't work with the MX53 Quick Start Board, MX53 Sabre Tablet, MX51EVK, or other MX5x platforms (assuming you build and setup u-boot properly for your board).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-336485"&gt;802-mkspecs.mx5x.tar.gz&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-336485"&gt;803-qt_qpaintengine_gles1.patch&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 01:38:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153705#M1699</guid>
      <dc:creator>mdc</dc:creator>
      <dc:date>2011-05-03T01:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153706#M1700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And for the ambitious, it is also possible to build Qt natively on an i.MX5x board running the Ubuntu image. I started out trying to cross compile against the lucid rootfs that I copied to my host, but ran into either compiler or library mismatches that I wasn't able to solve, so decided to try building on the board itself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to build using the below steps on an MX53evk, using the 11.01 kernel and associated .debs, and the lucid rootfs. Again, no reason this shouldn't work on an MX53 quick start board or MX51evk (and with the latest 11.03 BSP).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A couple things to keep in mind if anyone tries this:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You'll need at least an 8Gig SD card (you'll run out of space with only 4Gig).&lt;/LI&gt;&lt;LI&gt;It will take forever to build. A typical cross-compiled Qt build from scratch running on my 2.8GHz Core i7 Host (native linux, not vmware) takes between 2-3 hours. On an 800MHz mx53evk, it took about 2 days to get through everything. For those of you that have gotten a SATA drive working with the MX53 QSB, this will likely speed things up considerably.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Started by bringing the lucid rootfs up to date:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo apt-get install update&lt;/P&gt;&lt;P&gt;sudo apt-get install -u upgrade&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Install necessary packages:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo apt-get install bison flex libqt4-dev libqt4-opengl-dev libphonon-dev libicu-dev libsqlite3-dev libxext-dev libxrender-dev gperf libfontconfig1-dev&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sudo apt-get install libmysqlclient-dev&lt;/P&gt;&lt;P&gt;sudo apt-get install libgstreamer0.10-plugins-good sudo apt-get install libgstreamer0.10-plugins-bad sudo apt-get install libgstreamer0.10-plugins-ugly sudo apt-get install libts-dev&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In qmake.conf, remove -lxcb-xlib from QMAKE_LIBS as it appears to be depracated in lucid. See the attached mkspecs.mx5x.native.tar.gz which has this taken care of and has the toolchain paths adjusted. Again, there are versions of qmake.conf for both OpenGL ES1 and ES2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cd /usr/lib&lt;/P&gt;&lt;P&gt;ln -s libgsl-fsl.so libgsl.so&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When building on the board, I think I still got the 3 static lib errors described in the post above, but can't recall for sure (still need to re-verify this with the MX53 QSB and 11.03). In any event, if you get these, just use the same workarounds described above to get around them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If building with OpenGL ES1 support, you'll definitely still get the qpaintengine_opengl_p.h problem, and you'll want to apply the patch in the above post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll also run into one additional problem, the signature will be something along the lines of:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Error about "selected processor does not support `swp r1,r2,[r3]`&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is due to a known bug, see:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://bugs.launchpad.net/ubuntu/+source/qt4-x11/+bug/490371" target="_blank"&gt;https://bugs.launchpad.net/ubuntu/+source/qt4-x11/+bug/490371&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To work around this, apply the attached patch (armv7-thumb.patch) from the top level qt-everywhere-opensource-src-4.7.2 directory:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;patch -p1 &amp;lt;armv7-thumb.patch&lt;/P&gt;&lt;P&gt;cd src/corelib/arch&lt;/P&gt;&lt;P&gt;cp qatomic_armv6.h qatomic_arm.h&lt;/P&gt;&lt;P&gt;cd ../../..&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Apply the patches before running configure as described in the above post. When running configure you'll want to make sure the -prefix switch is modified to account for the native path. See below for the example from my run:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ ./configure -arch arm -xplatform linux-g++-mx5x -release -prefix /usr/local/Trolltech/Qt-4.7.2-mx5x-x11 -multimedia -phonon -phonon-backend -qt-gfx-linuxfb -qt-kbd-tty -little-endian -host-little-endian -fontconfig -sm -opengl es2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After running make and make install as described above, you'll also need to copy the Qt libs to /usr/lib - example below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ sudo cp -a /usr/local/Trolltech/Qt-4.7.2-mx5x-x11/lib/* /usr/lib/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After this you should be able to run any of the demos or examples you built in a similar fashion to that described in the above post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 03:28:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153706#M1700</guid>
      <dc:creator>mdc</dc:creator>
      <dc:date>2011-05-03T03:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153707#M1701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm surprised with all the error messages you got when cross-compiling.I wonder if it's due to using 64-bit machine?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I posted patches I use when building Qt 4.7.2 release, would be interesting to hear how building goes with those...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 19:10:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153707#M1701</guid>
      <dc:creator>VladanJovanovic</dc:creator>
      <dc:date>2011-05-03T19:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153708#M1702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vladan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good question. I've got a 32-bit 10.10 host as well at home that I'll trying building on and see if I get the same errors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for posting your ltib patches as well. I'll give that a try and see how it goes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 20:15:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153708#M1702</guid>
      <dc:creator>mdc</dc:creator>
      <dc:date>2011-05-03T20:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153709#M1703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just FYI - I tested the Qt cross compilation flow I originally posted on an Ubuntu 10.10 32-bit install and got the exact same errors as on my 64-bit machine. Now building Qt in ltib with the patches Vladan posted to see if any difference.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2011 22:35:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153709#M1703</guid>
      <dc:creator>mdc</dc:creator>
      <dc:date>2011-05-04T22:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153710#M1704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to install QT 4.7.3 but i got this warning&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The OpenGL ES 2.0 functionality test failed!&lt;BR /&gt;&amp;nbsp;You might need to modify the include and library search paths by editing&lt;BR /&gt;&amp;nbsp;QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in&lt;BR /&gt;&amp;nbsp;/home/gorio/Downloads/QT/Embedded/qt-everywhere-opensource-src-4.7.3/mkspecs/qws/linux-mxc-g++&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could someone help me to fix it ?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 19:56:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153710#M1704</guid>
      <dc:creator>G_rio</dc:creator>
      <dc:date>2011-06-09T19:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153711#M1705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I haven't had a chance to test 4.7.3 yet, but recommend you check the mkspecs tar file I posted here and compare to what you're using. I did have this problem early on and can't recall exactly what the fix was, but the mkspecs I posted should work at least with 4.7.2.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 20:52:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153711#M1705</guid>
      <dc:creator>mdc</dc:creator>
      <dc:date>2011-06-09T20:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153712#M1706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also make sure that libraries are actually installed. For some weird reason, LTIB sometimes does not install them to root file system, even though they're selected. I've seen this happen a few times... If this happens, deploy them again (probably best from command line) and try again with fresh Qt build...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;vladan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2011 06:52:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153712#M1706</guid>
      <dc:creator>VladanJovanovic</dc:creator>
      <dc:date>2011-06-10T06:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153713#M1707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I compiled 4.7.2 with successful.&lt;BR /&gt;&lt;BR /&gt;But when i tried to run X11 on i.MX51 i got this error.&lt;/P&gt;&lt;P&gt;freescale login: root&lt;BR /&gt;root@freescale ~$ export DISPLAY=:0.0&lt;BR /&gt;&amp;lt;ouse mouse,,device=/dev/input/mice -keybd keyboard,,/dev/input/event2 &amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;[1] 2248&lt;BR /&gt;root@freescale ~$ _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6&lt;BR /&gt;_XSERVTransOpen: transport open failed for inet6/freescale:0&lt;BR /&gt;_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6&lt;BR /&gt;(EE) XKB: Couldn't open rules file /usr/share/X11/xkb/rules/base&lt;BR /&gt;(EE) XKB: No components provided for device Virtual core keyboard&lt;BR /&gt;Kbd option key (/dev/input/event2) of value ((null)) not assigned!&lt;BR /&gt;(EE) XKB: Couldn't open rules file /usr/share/X11/xkb/rules/base&lt;BR /&gt;(EE) XKB: No components provided for device (unnamed keyboard)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OBS. I'm using the latest BSP for the i.MX53 is 11.03, qt-everywhere-opensource-src-4.7.2 and i.MX51 EVK&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 17:46:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153713#M1707</guid>
      <dc:creator>G_rio</dc:creator>
      <dc:date>2011-06-13T17:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153714#M1708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does X server start? Have you tried running an X application (something from Qt examples for example)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just because you get errors (is IPV6 support enabled? keyboard inserted?) doesn't mean X didn't start.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, might be good to start new topics when posting these kind of questions, to make it easier to find it later. This is also not Qt related question...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;vladan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 09:20:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153714#M1708</guid>
      <dc:creator>VladanJovanovic</dc:creator>
      <dc:date>2011-06-14T09:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153715#M1709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could someone help me with this error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The EGL functionality test failed!&lt;BR /&gt;&amp;nbsp;EGL is required for OpenGL ES to manage contexts &amp;amp; surfaces.&lt;BR /&gt;&amp;nbsp;You might need to modify the include and library search paths by editing&lt;BR /&gt;&amp;nbsp;QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OBS: i'm using mkspecs in attached above for OpenGL ES 2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 15:29:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153715#M1709</guid>
      <dc:creator>G_rio</dc:creator>
      <dc:date>2011-06-16T15:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153716#M1710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As mentioned above, can you check if the libraries &amp;lt;LTIB_FOLDER&amp;gt;/rootfs/usr/lib/libGLES* are actually installed by LTIB?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 15:47:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153716#M1710</guid>
      <dc:creator>VladanJovanovic</dc:creator>
      <dc:date>2011-06-16T15:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153717#M1711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have two files&lt;/P&gt;&lt;P&gt;libGLESv1_CM.so&lt;BR /&gt;libGLESv2.so&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 16:55:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153717#M1711</guid>
      <dc:creator>G_rio</dc:creator>
      <dc:date>2011-06-16T16:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153718#M1712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure you also have libEGL.so.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, you state you're using the mkspecs I posted above, but your .configure in the error.txt file you posted has you looking for the qmake.conf at mkspecs/qws/linux-mxc-g++. The example I posted has the qmake.conf at mkspecs/linux-g++-mx5x. Please double check your qmake.conf location and the .configure command you're using against the example above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 17:57:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153718#M1712</guid>
      <dc:creator>mdc</dc:creator>
      <dc:date>2011-06-16T17:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153719#M1713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have libEGL.so too and i changed the config cmd and folder too.. but it is yours mkspecs..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;﻿./configure -arch arm -xplatform qws/linux-mxc-g++ -release -prefix /tftpboot/ltib/usr/local/Trolltech/Qt-4.7.2-mx5x-x11 -multimedia -qt-gfx-linuxfb -qt-kbd-tty -little-endian -host-little-endian -fontconfig -sm -opengl es2&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 18:12:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153719#M1713</guid>
      <dc:creator>G_rio</dc:creator>
      <dc:date>2011-06-16T18:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153720#M1714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the EGL was solved with reinstall of ltib.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have other problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Phonon support cannot be enabled due to functionality tests!&lt;BR /&gt;&amp;nbsp;Turn on verbose messaging (-v) to ./configure to see the final report.&lt;BR /&gt;&amp;nbsp;If you believe this message is in error you may use the continue&lt;BR /&gt;&amp;nbsp;switch (-continue) to ./configure to continue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OBS. i didn't check any item with Phonon and when i try to select QT (QT using X11) + Phonon i got this error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2011 16:28:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153720#M1714</guid>
      <dc:creator>G_rio</dc:creator>
      <dc:date>2011-06-17T16:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153721#M1715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eduardo!&lt;/P&gt;&lt;P&gt;Actually I have the same problem as you.. "Phonon support cannot be enabled due to functionality tests!". Have you found how to fix this problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2011 20:55:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153721#M1715</guid>
      <dc:creator>bonil</dc:creator>
      <dc:date>2011-06-26T20:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153722#M1716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Problem solved.. i just rebuild the ltib with min profile and selected all needed packages and now works fine!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2011 21:41:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153722#M1716</guid>
      <dc:creator>bonil</dc:creator>
      <dc:date>2011-06-26T21:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153723#M1717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello bonil and all, i was out on last week (FTF 2011) and it was very nice.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But now i'm back and i'd like to know if you included the Phonon of the package list ? or QT embedded ? or QT x11 ? or do you just included the packages that are in this tutorial ? Did you have problem too about installing the QT ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2011 14:08:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153723#M1717</guid>
      <dc:creator>G_rio</dc:creator>
      <dc:date>2011-06-27T14:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Building Qt for i.MX5x</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153724#M1718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eduardo&lt;/P&gt;&lt;P&gt;I just installed on my host all depencies listed on the tutorial and, after selecting Min Profile from the LTIB I selected all packages listed on this tutorial:&lt;/P&gt;&lt;P&gt;* amd-gpu-x11-bin-mx51&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * libz160-bin&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * Freescale Multimedia Plugins/Codecs - fsl-mm-codec-libs &amp;amp; gstreamer-fsl-plugins&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * fontconfig&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * freetype&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * glib2&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer-plugins-base&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer-plugins-good&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer-plugins-bad&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * gstreamer-plugins-ugly&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * Liberation fonts&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * libjpeg&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * libpng&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * liboil&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * libxml2&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * mysql&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * tslib&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * X11 (X.Org 7.5)&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * X11/libICE&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * X11/libSM&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; * zlib&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I extracted all qt files into a new folder (to be sure that the previous errors do not affect my configuration / build) and I configured first qt with exactly the same parameters used here and the I ran make command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2011 15:44:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Building-Qt-for-i-MX5x/m-p/153724#M1718</guid>
      <dc:creator>bonil</dc:creator>
      <dc:date>2011-06-27T15:44:07Z</dc:date>
    </item>
  </channel>
</rss>

