Building QT for i.MX6

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Building QT for i.MX6

Building QT for i.MX6

Prerequisites:
The build is verified on prebuilt rootfs(based on LTIB) which can be downloaded from freescale.com

EGL uses framebuffer backend
libEGL.so -> libEGL-fb.so
libGAL.so -> libGAL-fb.so


QT4.8

1. Download the git respository for qt4.8:

$ git clone http://git.gitorious.org/qt/qt.git qt
$ cd qt


Let us consider this as <QTDir>

2. Create /tftpboot and point your target fileystem. As like

$ mkdir -p /tftpboot

$ cd /tftpboot

$ ln -s $(ROOTFFS) rootfs

TBD:Need to work on this to use sysroot option

3. Create a build directory to install for the qt4 packages. This directory can be  in any location. For example,

$ mkdir /opt/qt4
$ sudo chown -R <username> /opt/qt4

Let us consider the the <installdir> as /opt/qt4

4. Extract the attached mkspecs(linux-imx6-g++.tar.gz) to  <QTDir>/mkspecs/qws/

5. Apply the attached cd 0001-add-i.MX6-EGL-support.patch attached to enable egl support for i.MX6

$ cd <QTDir>
$ patch -p1<0001-add-i.MX6-EGL-support.patch

6. Export CROSS-COMPILE location path to PATH

$ export PATH=$PATH:/opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/

7. Enter to the <QTDir>. Do configure. You can select the options as you like. Here is an example

$ cd <QTDir>

$ ./configure -qpa -arch arm -xplatform qws/linux-imx6-g++ -no-largefile -no-accessibility \
-opensource -verbose -system-libpng -system-libjpeg -system-freetype -fast -opengl es2 -egl -confirm-license \
-qt-zlib  -qt-libpng  -no-webkit -no-multimedia \
-make examples -make demos \
-release -make libs -exceptions -no-qt3support -prefix <installdir>

8. When the configure summary is shown make sure the Qt has OpenGL ES 2.0 support. Do build

$ make
$ make install

9. Now need to build eglfs plugin

$ cd <QTDir>/src/plugins/platforms/eglfs
$ make
$ make install


    Now the eglfs will be installed to the QT Install directory.

10. By now all required QT files are in <install directory>

11. Copy the install directory to target filesystem

$ cp -rf /opt/qt4 /tftpboot/rootfs/opt/.

12. Running Qt apps on target
    - Boot the target either with NFS or SD Image
    - Ensure that folder <installdir> is copied on target file system at “/usr/local”.
    - Launch application using

$ cd /opt/qt4/examples/opengl/hellogl_es2
$ ./hellogl_es2 -platform eglfs

QT5

These steps are performed on the host

1. Download the git respository for qt5:

$ git clone git://gitorious.org/qt/qt5.git qt5

$ cd qt5


    Let us consider this as <QTDir>

2. Create a build directory to install for the qt5 packages. This directory can be  in any loctation. For example,

$ sudo mkdir /opt/qt5

$ sudo chown -R <username> /opt/qt5

Let us consider the the installdir as /opt/qt5

3. Enter the Qt5 directory and run the init-repository script to download all the source code for
   Qt5. To download all the source code will take about an hour.

$ ./init-repository

Update:  In the latest Qt5 release the webkit library is included by default and there are some issues trying to compile it.

use the next line to avoid problems if not desired to use webkit.

$ ./init-repository --no-webkit

4. From the following path

$ gedit qtbase/mkspecs/devices/linux-imx6-g++/qmake.conf

5. At the top of the qmake.conf, there is a configure line. Copy and paste the configure line into a text file located
   in your build build directory. Edit the configure line to find your toolchain and filesystem. Also make sure to
   include the options -no-pch, -no-opengl, -opengl es2, Here is an example of
   a configure line.

Update: In the latest Qt5 stable, the option to compile the examples/demos is -compile-examples, instead of -make examples -make demos

If you are running into problems with webkit,  use the option -no-icu, this will disable the webkit.

$ cd <QTDir>
$ cd qtbase
$ ./configure -v -opensource -confirm-license -no-pch -no-xcb -no-opengl -opengl es2  \
        -make libs -device imx6 \
       -compile-examples \
      -device-option CROSS_COMPILE=/opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-fsl-linux-gnueabi- \
       -sysroot <rootfs> -no-gcc-sysroot \
      -prefix <installdir>

7. Make the textfile that has the configure line and executable and run it. When the configure summary is shown make sure the Qt5 has openGL ES 2.0 support. Do build

$ make
$ sudo make install

   When Qt5 has finished building, Qt5 will be installed in two places:

           1. <location of rootfs>/<installdir>
           2. <HOST Machine>/<install dir>

This is good because now all the libraries and binaries for Qt5 are installed on the host and the target filesystem. Therefore, the target already has all the libraries and  binaries needed to run Qt5.

8. Also need to build qtjsbackend and qtdeclarative.

$ cd <location to Qt5 git>
$ cd qtjsbackend
$ ../qtbase/bin/qmake -r
$ make && sudo make install

$ cd <location to Qt5 git>
$ cd qtdeclarative
$ ../qtbase/bin/qmake -r
$ make && sudo sudo make install

9. Running Qt apps on target
    - Boot the target either with NFS or SD Image
    - Ensure that folder <installdir> is copied on target file system at “/usr/local”.
    - Launch application using

$ cd /opt/qt5/examples/opengl/hellowindow
$ ./hellowindow -platform eglfs


FAQ:
On the target file system, the location of target libaries and includes may present in arm-linux-gnueabi directory. Make sure to create soflinks to QT can find. For example

$ cd $(ROOTFS)/usr/lib
$ ln -s arm-linux-gnueabi/libffi.so.6 libffi.so.6

While building QT5, you may see a build error that libQt5V8.so.5 is not found. This might be some problem to be addressed in QT. Workaround is to
copy all the binaries to correct path as like this

$ cp  <ROOTFS>/<installdir>/lib/* <HOST Machine>/<installdir>/.

What is coming up next:
1. QT on X is already available on Yocto filesystem. Steps to enable GPU Acceleration TDB.
2. QT with Wayland support.

Labels (1)
Attachments
Comments

First: I'm a very beginner in developing software for Linux Embedded. So may be my questions

are very basic. I'm sorry for that.

I need to cross-compile a QT 5 program from a PC based Ubuntu system to a i.MX6 board.

I already built the O.S. for the board following the instructions of the page

"https://github.com/Freescale/fsl-community-bsp-platform".

Now I'm trying to set up QT following the

https://community.freescale.com/docs/DOC-94066

document, i.e. this page.

I did step 1, 2, 3 and 4.

At step 5 gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12 is referenced.

Where can I find it?

I looked for it on http://www.linaro.org/ site but I didn't find it.

Thanks!

As I noticed that there is a patch file 0001-add-i.MX6-EGL-support.patch for Qt 4.8, however, there is not such a patch for QT5.

Did you miss it? There might be a similar patch to Qt5.


As I tried the hellowindow application in Qt 5.1, I got error log as follow. Do you have any hints?

</opengl/hellowindow$ ./hellowindow  -platform eglfs

QIconvCodec::convertFromUnicode: using Latin-1 for conversion, iconv_open failed

QIconvCodec::convertToUnicode: using Latin-1 for conversion, iconv_open failed

QEglFSImx6Hooks will set environment variable FB_MULTI_BUFFER=2 to enable double buffering and vsync.

If this is not desired, you can override this via: export QT_EGLFS_IMX6_NO_FB_MULTI_BUFFER=1

EGLFS: Unable to query physical screen size, defaulting to 100 dpi.

EGLFS: To override, set QT_QPA_EGLFS_PHYSICAL_WIDTH and QT_QPA_EGLFS_PHYSICAL_HEIGHT (in millimeters).

EGLFS: OpenGL windows cannot be mixed with others.

Aborted

Hi, xicai chen.

I have the same problem with hellowindow application in Qt 5 (EGLFS: OpenGL windows cannot be mixed with others)
You solved it?

I would suggest everyone who uses already YOCTO for their images to also use it to compile Qt

See for a working Qt5 tutorial here:

Everyone who doesn't use YOCTO not 'til now: DO IT :smileygrin: read more about it in the Yocto Training - HOME

If you want to use Qt4, you can do this even easier because of the different layers that YOCTO delivers...

for the board: qt-in-use-image or qte-in-use-image

as toolchain: meta-toolchain-qt or meta-toolchain-qte

Have fun!

Hi,

I solved that issue.

It would be a good choice to comment out those code which reports “EGLFS: OpenGL windows cannot be mixed with others”, that would make it fine.

Kind regards

Richard Chen

Hello Bradley,

I'm starting with IMX6 and Qt.

I followed the instructions but I'm having the same issue as yours. I have the same directories after the install, nothing more, and some errors during "make" and "make install".

Did you find a solution to build Qt4.8 for the IMX6?

Nicolas

Hey I am experimenting with Yocto and my Mx6 Board. I am using dora and I used qte-in-use-image to "bake" an image. I want to experiment with QT + OpenGL using the framebuffer.

I disable X11 and Wayland with the flag: DISTRO_FEATURES_remove = "x11 wayland" on my local.conf

I am able to run the vivante vdk examples but I have not being able to run the hellogl_es2 example from OpenGL. I get a pitch black rendering. Have you being able to run the OpenGL examples from QT?

AFAIK the qt-in-use-image only produces a rootfs for Qt 4.8 - but still the version should be good enough to compile the hellogl_es2 example.

I tried to compile the application with my Qt 5.1.1 toolchain (see link in my previous comment) but it didn't work - gnu/stubs-soft.h wasn't found... I didn't recognize this error before and don't know how to handle this - so sorry, I cant help you with that :smileysad:

I found out that the hellogl_es2 example is not able to run when you dont have X11 or wayland. You need a windowing system because the hellogl_es2 encapsulates an QGLWidget within another widget. Better is to use QT5 + QML. I will give it a try. And probably your error is because you have to edit the file qtbase/mkspecs/devices/linux-imx6-g++/qmake.conf and add -mfloat-abi=hard in IMX6_CFLAGS. Give it a try.

Hey,

I successfully installed qt 4.8 in my target.

Initially i had 4.6.0 on my target, which had audio demo codes. 4.8 doesn't seem to have any multimedia demos. The existing examples execute correctly. however any example which i used to

run in 4.6.0 using qws doesn't seem to execute on 4.8. It crashes with a "segmentation fault".

I have qtCreater 2.7.2  with Qt 4.8.4 on my host, and any example code for instance a system call code or a mmap call doesn't seem to work.

I had shifted to 4.8 assuming and expecting better audio and Serial communication support. but simple codes compiled do not work in ltib. It is very frustrating.

Can anyone please help me out with that.

regards,

nishad

I am trying to setup a cross compiler setup for the RIOT (IMX6) on opensuse 13.21 (64),  as I would like to use qt with qws under Ubuntu Image (Must still figure out how-to disable the GUI, as this is not a 'standard' Unbuntu startup)

Step 6 assumes one has a cross compiler already installed.

    export PATH=$PATH:/opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/

How can I install this,  where can I download it, as it seem to 'included' in some BSD package.

Thanks

I'm building qt-5.1.1 from dora branch of yocto project. All fine works instead HTML5 video from simple browser in qtwebkit-examples

I see player controls, but it doesn't work. On some videos i can view freeze frame of videos, but it not playing.

In console gstreamer output messages like this:

Qt Warning: Could not find a location of the system's Compose files. Consider setting the QTCOMPOSE environment variable.

libpng warning: iCCP: Not recognizing known sRGB profile that has been edited

Received finished signal while progress is still: 10 Url:  QUrl( "http://qt-project.org/" ) 

Aiur: 3.0.11

Core: MPEG4PARSER_06.07.04  build on Dec  5 2013 11:41:38

  mime: video/quicktime; audio/x-m4a; application/x-3gp

  file: /usr/lib/imx-mm/parser/lib_mp4_parser_arm11_elinux.so.3.2

Content Info:

    URI:

          https://r1---sn-8xb5-px8e.googlevideo.com/videoplayback?ip=212.90.165.14&require

          ssl=yes&mws=yes&source=youtube&upn=4-tA0Ie6tDA&mv=m&sparams=id,ip,ipbits,itag,ra

          tebypass,requiressl,source,upn,expire&key=yt5&ipbits=0&mt=1401803916&id=o-ABczKx

          qqFwtM_XhBgSvGnsGqyiHL18Wy6SqK0BZepcFQ&signature=121A2CB3142FB772CD72A9F1D872603

          C749A2B74.0370EDFC498A96A43C8F8A98C10184E14158A0D2&sver=3&ratebypass=yes&expire=

          1401827798&ms=au&fexp=908548,912321,913434,916611,923341,926122,930008&itag=18&c

          pn=VgAqvxj2iI2hp45w&ptk=youtube_none&pltype=contentugc&c=WEB&cver=html5

    Seekable  : Yes

    Size(byte): 32830110

Movie Info:

    Seekable  : Yes

    Live      : No

    Duration  : 0:11:52.503360000

    ReadMode  : Track

    Track     : 2

Track 00 [video_000000] Enabled

    Duration: 0:11:52.503360000

    Language: und

    Mime:

          video/x-h264, parsed=(boolean)true, width=(int)640, height=(int)360, framerate=(

          fraction)24000/1001

Track 01 [audio_000000] Enabled

    Duration: 0:11:52.503360000

    Language: und

    Mime:

          audio/mpeg, mpegversion=(int)4, channels=(int)2, rate=(int)44100, bitrate=(int)9

          6000, framed=(boolean)true, stream-format=(string)raw, codec_data=(buffer)121000

          00000000000000000000000000

Beep: 3.0.11

Core: AAC decoder Wrapper  build on Jan 22 2014 15:42:53

  mime: audio/mpeg, mpegversion=(int){2,4}

  file: /usr/lib/imx-mm/audio-codec/wrap/lib_aacd_wrap_arm12_elinux.so.3

CODEC: BLN_MAD-MMCODECS_AACD_ARM_03.07.00_CORTEX-A8  build on Sep 18 2013 10:29:53.

[--->FINALIZE aiurdemux

QtMultimedia examples working correctly.

Whats wrong and how can I fix it?

Hi all, i'm trying to build qt5 for a udoo quad board (use imx6 quad http://www.udoo.org/) but i'm blocked at ./configure. i had some errors :

/home/modjo/Udoo/Qt5_build/fsl-linaro-toolchain/arm-fsl-linux-gnueabi/bin/g++ -c -pipe -march=armv7-a -mfpu=neon -DLINUX=1 -DEGL_API_FB=1 -mfloat-abi=softfp -g -Wall -W -fPIE -I../../mkspecs/devices/linux-imx6-g++ -I. -I../../../../usr/include -I../../../../usr/bin -o arch.o arch.cpp
g++: error trying to exec 'cc1plus': execvp: No such file or directory
Messages de l'assembleur:
Erreur fatale: option -march= invalide: « armv7-a »
gmake: *** [arch.o] Erreur 1
Unable to determine architecture!

Could not determine the target architecture!
Turn on verbose messaging (-v) to see the final report.
Determining architecture... ()
g++ -c -pipe -g -Wall -W -fPIE -I../../mkspecs/linux-g++ -I. -o arch.o arch.cpp
g++ -o arch arch.o
Found architecture in binary
CFG_HOST_ARCH="i386"
CFG_HOST_CPUFEATURES=""
System architecture: 'unknown'
Host architecture: 'i386'
C++11 auto-detection... ()
/home/modjo/Udoo/Qt5_build/fsl-linaro-toolchain/arm-fsl-linux-gnueabi/bin/g++ -c -pipe -march=armv7-a -mfpu=neon -DLINUX=1 -DEGL_API_FB=1 -mfloat-abi=softfp -O2 -std=c++0x -Wall -W -fPIE -I../../../mkspecs/devices/linux-imx6-g++ -I. -I/home/modjo/Udoo/Qt5_build/usr/include -I/home/modjo/Udoo/Qt5_build/usr/bin -o c++11.o c++11.cpp
g++: error trying to exec 'cc1plus': execvp: No such file or directory
Messages de l'assembleur:
Erreur fatale: option -march= invalide: « armv7-a »
gmake: *** [c++11.o] Erreur 1
C++11 disabled.

.......

......

......

......

OpenGL ES 2.x auto-detection... ()
/home/modjo/Udoo/Qt5_build/fsl-linaro-toolchain/arm-fsl-linux-gnueabi/bin/g++ -c -pipe -march=armv7-a -mfpu=neon -DLINUX=1 -DEGL_API_FB=1 -mfloat-abi=softfp -O2 -Wall -W -fPIE -I../../../mkspecs/devices/linux-imx6-g++ -I. -I/home/modjo/Udoo/Qt5_build/usr/include/GLES2 -I/home/modjo/Udoo/Qt5_build/usr/include -I/home/modjo/Udoo/Qt5_build/usr/bin -o opengles2.o opengles2.cpp
g++: error trying to exec 'cc1plus': execvp: No such file or directory
Messages de l'assembleur:
Erreur fatale: option -march= invalide: « armv7-a »
gmake: *** [opengles2.o] Erreur 1
OpenGL ES 2.x disabled.
The OpenGL ES 2.0 functionality test failed!
You might need to modify the include and library search paths by editing
QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in
/home/modjo/Udoo/Qt5_build/qt5/qtbase/mkspecs/devices/linux-imx6-g++.

For information the Udoobuntu file system : http://www.udoo.org/downloads/

the link for the tutorial : http://www.udoo.org/ProjectsAndTutorials/how-to-build-qt5-for-udoo/?portfolioID=1394

my qmake.conf :

include(../common/linux_device_pre.conf)



ROOTFS_PATH=/home/modjo/Udoo/Qt5_build
TOOLCHAIN_PREFIX=/home/modjo/Udoo/Qt5_build/fsl-linaro-toolchain/arm-fsl-linux-gnueabi/bin

EGLFS_PLATFORM_HOOKS_SOURCES = $$PWD/qeglfshooks_imx6.cpp

QMAKE_INCDIR          += $${ROOTFS_PATH}/usr/include $${ROOTFS_PATH}/usr/bin
QMAKE_LIBDIR          += $${ROOTFS_PATH}/usr/lib/arm-linux-gnueabihf $${ROOTFS_PATH}/usr/lib

QMAKE_INCDIR_OPENGL_ES2 += /home/modjo/Udoo/Qt5_build/usr/include/GLES2
QMAKE_LIBDIR_OPENGL_ES2 += /home/modjo/Udoo/Qt5_build/usr/lib/GLESv2

#QMAKE_LIBS_EGL        += /home/modjo/Udoo/Qt5_build/usr/lib/GLESv2
#QMAKE_LIBS_OPENGL_ES2  += /home/modjo/Udoo/Qt5_build/usr/lib/GLESv2
#QMAKE_LIBS_OPENVG      += /home/modjo/Udoo/Qt5_build/usr/lib/OpenVG

QMAKE_LIBS_EGL        += -lEGL
QMAKE_LIBS_OPENGL_ES2  += -lGLESv2 -lEGL -lGAL
QMAKE_LIBS_OPENVG      += -lOpenVG -lEGL -lGAL


QMAKE_LFLAGS          += -Wl,-rpath-link,$$/home/modjo/Udoo/Qt5_build/lib/arm-linux-gnueabihf

IMX6_CFLAGS            = -march=armv7-a -mfpu=neon -DLINUX=1 -DEGL_API_FB=1
QMAKE_CFLAGS          += $$IMX6_CFLAGS
QMAKE_CXXFLAGS        += $$IMX6_CFLAGS

include(../common/linux_arm_device_post.conf)

load(qt_config)

and my configure :

./configure -prefix /opt/qt5 -make libs -no-pch -no-opengl -device imx6 -device-option CROSS_COMPILE=/home/modjo/Udoo/Qt5_build/fsl-linaro-toolchain/arm-fsl-linux-gnueabi/bin/ -no-largefile -opengl es2 -qt-zlib -qt-libpng -qt-libjpeg -no-nis -no-cups -gui -make examples -sysroot /home/modjo/Udoo/Qt5_build/exemples -no-gcc-sysroot -opensource -confirm-license -qreal float -v

Do you an idea to resolve this ?

Hi ,

I successfully cross compiled QT5 for my custom iMX6Q board,

I used LTIB 3.0.35_4.1.0 kernel for building my u-boot, kernel and rootfs.

I am attaching documents and links that i prepared to help anyone who

wishes to build QT5, it might not help you directly, but the procedure

should help you.

regards,

Nishad

Ok nishad, i'm waiting for your procedure ! thank's in advance !

Configuration Script:

./configure -v -opensource -confirm-license -no-sse2 -no-sse3 -no-ssse3

-no-sse4.1 -no-sse4.2 -no-avx -no-xcb -no-sql-mysql -no-sql-db2

-no-sql-ibase -no-sql-oci -no-sql-odbc -no-sql-tds -no-sql-sqlite2

-no-pch -no-opengl -opengl es2  -wayland -make libs -device imx6 -make

examples -device-option

CROSS_COMPILE=/opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-fsl-linux-gnueabi-

-sysroot /home/sumeet/ltib/rootfs -no-gcc-sysroot -prefix /usr/local/QT_5


Link to be followed thoughtfully along with the procedure given on the

current link above:

http://qt-project.org/wiki/RaspberryPi_Beginners_guide

I used the "cross-compiled-tools" to compile QT-5

and built individual modules using the link.

you need to download it as use it taking reference of the script given below for setting up path.

Cleaning a_config_if_compile_wrong:

sudo git submodule foreach --recursive "git clean -dfx"

Script for_setting_paths:

./fixQualifiedLibraryPaths /home/sumeet/ltib/rootfs

/opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-fsl-linux-gnueabi-g++

You might get fontconfig errors, which you need to solve by analysing

the error.

Although i was able to install QT5 , i still have problems with fonts, i

am not able to see fonts in the GUI. i am working on it.

regards

nishad

Hi all,

I tried build qt5 like in this doc.

My configuration command is:

./configure -v -opensource -confirm-license -make libs -device imx6  -device-option CROSS_COMPILE=/home/x0158990/hdd/tools/poky/1.7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi-  -sysroot /home/x0158990/hdd/tools/poky/1.7/sysroots/x86_64-pokysdk-linux -no-gcc-sysroot  -prefix /home/x0158990/work/tools/QT5

I have got error:

Precompiled-headers support enabled.

/home/x0158990/hdd/tools/poky/1.7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi-g++ -c -fvisibility=hidden fvisibility.c

Symbol visibility control enabled.

/home/x0158990/hdd/tools/poky/1.7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi-g++ -o libtest.so -shared -Wl,-Bsymbolic-functions -fPIC bsymbolic_functions.c

bsymbolic_functions.c:2:2: error: #error "Symbolic function binding on this architecture may be broken, disabling it (see QTBUG-36129)."

#error "Symbolic function binding on this architecture may be broken, disabling it (see QTBUG-36129)."

  ^

Symbolic function binding disabled.

In QTBUG-36129 bug's description I didn't found applicable solution.

Please help!

HI nice tutorial.... can you pls give some insights about qt webkit as well how to render a fullscreen HTML5 based webpage using that... am really new to qt... pls guide me

Hi,

I have successfully build Qt4.8 for imx6. But when I tried to run the sample example I got the below error:

"Could not create the egl surface: error = 0x300b"

Please help me out of this.

Regards,

Paritosh

Hi,

Sorry for the delay in reply,

Could you give me more information about your problem?

Are you using LTIB to build your image or Yocto?

Did you manually build the QT?

Also can you mail me your configuration script? There could be a possibility that the QT is not properly built.

Regards,

nishad

Hi Nishad,

Thanks for replying.

I am using LTIB for building my image.

yes, I built QT4.8 manually with steps as mentioned on this page.

Also, the configuration script is same as given here.

./configure -qpa -arch arm -xplatform qws/linux-imx6-g++ -no-largefile -no-accessibility \

-opensource -verbose -system-libpng -system-libjpeg -system-freetype -fast -opengl es2 -egl -confirm-license \

-qt-zlib  -qt-libpng  -no-webkit -no-multimedia \

-make examples -make demos \

-release -make libs -exceptions -no-qt3support -prefix /opt/qt4.

Regards,

Paritosh Singh

These patches are for Qt4 not for Qt5 right?

Hi all PrabhuSundararaj

The git url  "git://gitorious.org/qt/qt5.git qt5"  is not work.

Is it new git url  for qt5 ? Because I want to use LTIB porting Qt5.

Please help, thanks all.

Hello All,

is anyone able to compile QT5.5 or QT 5.6 for imx6q. This page is not helping me much because QT 5 compilation section referring the gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12 fsl tool chain whcih is not available for download because it is pretty quite old.If i am using linaro latest tolchain 4.8 or 4.7 QT doesn't compile.

I would really appreciate if someone let me know which is the correct tool-chain to compile QT 5.5 or QT 5.6 version on imx6.

Hi nishad

I have successfully build Qt4.8.5 for imx6. But when I tried to run the sample example I got the below error:

root@freescale /opt/qt4.8.5-arm-opengl$ cd examples/opengl/hellogl_es2/

root@freescale /opt/qt4.8.5-arm-opengl/examples/opengl/hellogl_es2$ ls

bubble.cpp       glwidget.h       main.cpp         texture.qrc

bubble.h         hellogl_es2      mainwindow.cpp

glwidget.cpp     hellogl_es2.pro  mainwindow.h

<-opengl/examples/opengl/hellogl_es2$ ./hellogl_es2                    

bubble.cpp       glwidget.h       main.cpp         texture.qrc

bubble.h         hellogl_es2      mainwindow.cpp  

glwidget.cpp     hellogl_es2.pro  mainwindow.h    

<-opengl/examples/opengl/hellogl_es2$ ./hellogl_es2 -platform eglfs

Segmentation fault

root@freescale /opt/qt4.8.5-arm-opengl/examples/opengl/hellogl_es2$

Hi All

I have QT5.5.0, i want to crosscompile into imx6-linux. So i used the following configuration

./configure -v -opensource -confirm-license -no-pch -no-xcb -no-opengl -opengl es2  \

        -make libs -device imx6 \

       -compile-examples \

      -device-option CROSS_COMPILE=/opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-fsl-linux-gnueabi- \

       -sysroot /home/zumi/Project/Imx6q/rootfs/L3.0.35_4.1.0_130816_images_MX6/Rootfs/opt/qt -no-gcc-sysroot \

      -prefix /opt/qt-vision

Following error i am getting,

cc1plus: error: unrecognized command line option '-fuse-ld=gold'

arm-fsl-linux-gnueabi-g++ -o libtest.so -shared -Wl,-Bsymbolic-functions -fPIC bsymbolic_functions.c

bsymbolic_functions.c:2:2: error: #error "Symbolic function binding on this architecture may be broken, disabling it (see QTBUG-36129)."

Symbolic function binding disabled.

And one more thing,

QT5.5.0 didn't have qws.conf file. so in your attached qmake.conf file i remove include(../../common/qws.conf) line.

If i not remove the line it shows No such a file found error. After the removing i got the above mentioned error.

Regards,

Aravinth

Hi aravinthkumar jayaprakasam,

You can try to copy the qws.conf on qt4,

then put the qws.conf into qt-everywhere-opensource-src-x.x.x/qtbase/mkspecs/common/  (x.x.x is your qt version).

Then configure again.

Hi peterchiu

in Qt 5.5 don't have qws. And also above mentioned problem i solved.

Regards,

Aravinth

Hello every one,

How to configure and build Qt5.5 for INTEGRITY RTOS???

Hi bharathadwajakodanda​,

In your Qt source Below location can you select which device  you want to use:

~/qt5.5/qtbase/mkspecs/devices/

After that i will give you the support.

Hi aravinth,

Yeah, you got my point. There is no target device platform for INTEGRITY in

qt5.5/qtbase/mkspecs/devices/.

Is there any possibility to create target platform in

qt5.5/qtbase/mkspecs/devices/

by our own??

This is the full command I used to configure the target

configure -embedded -xplatform qws/integrity-arm-cxarm -prefix /

-qt-sql-sqlite

-embedded - builds the embedded version of Qt

-xplatform qws/integrity-arm-cxarm - selects the arm-cxarm mkspec for

INTEGRITY

-qt-sql-sqlite - links sqlite directly into the Qt library

According to my task the target should be integrity-arm-cxarm

On Fri, Aug 12, 2016 at 7:50 AM, aravinthkumar jayaprakasam <

Hi,

Post you query in Qt Form. They will give support.

Home | Qt Forum

Regards,

Aravinth

I already done with it.

On Fri, Aug 12, 2016 at 10:43 AM, aravinthkumarjayaprakasam <

%3CLINGO-SUB%20id%3D%22lingo-sub-1111319%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3EBuilding%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111319%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSTRONG%3E%3CSPAN%20style%3D%22font-size%3A%2011pt%3B%20font-family%3A%20'Calibri'%2C'sans-serif'%3B%22%3E%3CSTRONG%3EPrerequisites%3C%2FSTRONG%3E%3C%2FSPAN%3E%3A%3C%2FSTRONG%3E%3CBR%20%2F%3EThe%20build%20is%20verified%20on%20prebuilt%20rootfs(based%20on%20LTIB)%20which%20can%20be%20downloaded%20from%20freescale.com%3C%2FP%3E%3CP%3EEGL%20uses%20framebuffer%20backend%3CBR%20%2F%3ElibEGL.so%20-%26gt%3B%20libEGL-fb.so%3CBR%20%2F%3ElibGAL.so%20-%26gt%3B%20libGAL-fb.so%3C%2FP%3E%3CP%3E%3CBR%20%2F%3E%3CSTRONG%3EQT4.8%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E1.%20Download%20the%20git%20respository%20for%20qt4.8%3A%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20git%20clone%20%3CA%20href%3D%22http%3A%2F%2Fgit.gitorious.org%2Fqt%2Fqt.git%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fgit.gitorious.org%2Fqt%2Fqt.git%3C%2FA%3E%20qt%3CBR%20%2F%3E%24%20cd%20qt%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3CBR%20%2F%3ELet%20us%20consider%20this%20as%20%26lt%3B%3CEM%3EQTDir%3C%2FEM%3E%26gt%3B%3C%2FP%3E%3CP%3E2.%20Create%20%2F%3CEM%3Etftpboot%3C%2FEM%3E%20and%20point%20your%20target%20fileystem.%20As%20like%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20mkdir%20-p%20%2Ftftpboot%3C%2FP%3E%0A%3CP%3E%24%20cd%20%2Ftftpboot%3C%2FP%3E%0A%3CP%3E%24%20ln%20-s%20%24(ROOTFFS)%20rootfs%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3ETBD%3ANeed%20to%20work%20on%20this%20to%20use%20sysroot%20option%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E3.%20Create%20a%20build%20directory%20to%20install%20for%20the%20qt4%20packages.%20This%20directory%20can%20be%26nbsp%3B%20in%20any%20location.%20For%20example%2C%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20mkdir%20%2Fopt%2Fqt4%3CBR%20%2F%3E%24%20sudo%20chown%20-R%20%3CUSERNAME%3E%20%2Fopt%2Fqt4%3C%2FUSERNAME%3E%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3ELet%20us%20consider%20the%20the%20%3CINSTALLDIR%3E%20as%3CEM%3E%20%2Fopt%2Fqt4%3C%2FEM%3E%3C%2FINSTALLDIR%3E%3C%2FP%3E%3CP%3E4.%20Extract%20the%20attached%20mkspecs(%3CEM%3Elinux-imx6-g%2B%2B.tar.gz%3C%2FEM%3E)%20to%26nbsp%3B%20%3CEM%3E%3CQTDIR%3E%2Fmkspecs%2Fqws%2F%3C%2FQTDIR%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E5.%20Apply%20the%20attached%20cd%20%3CEM%3E0001-add-i.MX6-EGL-support.patc%3C%2FEM%3Eh%20attached%20to%20enable%20egl%20support%20for%20i.MX6%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cd%20%3CQTDIR%3E%3CBR%20%2F%3E%24%20patch%20-p1%26lt%3B0001-add-i.MX6-EGL-support.patch%3C%2FQTDIR%3E%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E6.%20Export%20%3CEM%3ECROSS-COMPILE%3C%2FEM%3E%20location%20path%20to%20%3CEM%3EPATH%3C%2FEM%3E%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20export%20PATH%3D%24PATH%3A%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2F%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E7.%20Enter%20to%20the%20%26lt%3B%3CEM%3EQTDir%3C%2FEM%3E%26gt%3B.%20Do%20configure.%20You%20can%20select%20the%20options%20as%20you%20like.%20Here%20is%20an%20example%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cd%20%3CQTDIR%3E%3C%2FQTDIR%3E%3C%2FP%3E%0A%3CP%3E%24%20.%2Fconfigure%20-qpa%20-arch%20arm%20-xplatform%20qws%2Flinux-imx6-g%2B%2B%20-no-largefile%20-no-accessibility%20%5C%3CBR%20%2F%3E-opensource%20-verbose%20-system-libpng%20-system-libjpeg%20-system-freetype%20-fast%20-opengl%20es2%20-egl%20-confirm-license%20%5C%3CBR%20%2F%3E-qt-zlib%26nbsp%3B%20-qt-libpng%26nbsp%3B%20-no-webkit%20-no-multimedia%20%5C%3CBR%20%2F%3E-make%20examples%20-make%20demos%20%5C%3CBR%20%2F%3E-release%20-make%20libs%20-exceptions%20-no-qt3support%20-prefix%20%3CINSTALLDIR%3E%3C%2FINSTALLDIR%3E%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E8.%20When%20the%20configure%20summary%20is%20shown%20make%20sure%20the%20Qt%20has%20%3CEM%3EOpenGL%20ES%202.0%3C%2FEM%3E%20support.%20Do%20build%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20make%3CBR%20%2F%3E%24%20make%20install%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E9.%20Now%20need%20to%20build%20%3CEM%3Eeglfs%3C%2FEM%3E%20plugin%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cd%20%3CQTDIR%3E%2Fsrc%2Fplugins%2Fplatforms%2Feglfs%3CBR%20%2F%3E%24%20make%3CBR%20%2F%3E%24%20make%20install%3C%2FQTDIR%3E%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Now%20the%20eglfs%20will%20be%20installed%20to%20the%20QT%20Install%20directory.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E10.%20By%20now%20all%20required%20QT%20files%20are%20in%20%3CINSTALL%20directory%3D%22%22%3E%3C%2FINSTALL%3E%3C%2FP%3E%3CP%3E11.%20Copy%20the%20install%20directory%20to%20target%20filesystem%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cp%20-rf%20%2Fopt%2Fqt4%20%2Ftftpboot%2Frootfs%2Fopt%2F.%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3C%2FP%3E%3CP%3E12.%20Running%20Qt%20apps%20on%20target%20%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-%20Boot%20the%20target%20either%20with%20NFS%20or%20SD%20Image%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-%20Ensure%20that%20folder%20%3CINSTALLDIR%3E%20is%20copied%20on%20target%20file%20system%20at%20%E2%80%9C%2Fusr%2Flocal%E2%80%9D.%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-%20Launch%20application%20using%3C%2FINSTALLDIR%3E%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cd%20%2Fopt%2Fqt4%2Fexamples%2Fopengl%2Fhellogl_es2%3CBR%20%2F%3E%24%20.%2Fhellogl_es2%20-platform%20eglfs%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3CSTRONG%3EQT5%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3EThese%20steps%20are%20performed%20on%20the%20host%3C%2FP%3E%3CP%3E1.%20Download%20the%20git%20respository%20for%20qt5%3A%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20git%20clone%20git%3A%2F%2Fgitorious.org%2Fqt%2Fqt5.git%20qt5%3C%2FP%3E%0A%3CP%3E%24%20cd%20qt5%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Let%20us%20consider%20this%20as%20%3CQTDIR%3E%3C%2FQTDIR%3E%3C%2FP%3E%3CP%3E2.%20Create%20a%20build%20directory%20to%20install%20for%20the%20qt5%20packages.%20This%20directory%20can%20be%26nbsp%3B%20in%20any%20loctation.%20For%20example%2C%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20sudo%20mkdir%20%2Fopt%2Fqt5%3C%2FP%3E%0A%3CP%3E%24%20sudo%20chown%20-R%20%3CUSERNAME%3E%20%2Fopt%2Fqt5%3C%2FUSERNAME%3E%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3ELet%20us%20consider%20the%20the%20installdir%20as%20%2Fopt%2Fqt5%3C%2FP%3E%3CP%3E3.%20Enter%20the%20Qt5%20directory%20and%20run%20the%20init-repository%20script%20to%20download%20all%20the%20source%20code%20for%20%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%20Qt5.%20To%20download%20all%20the%20source%20code%20will%20take%20about%20an%20hour.%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20.%2Finit-repository%3C%2FP%3E%0A%3CP%3E%3CEM%3EUpdate%3A%26nbsp%3B%20In%20the%20latest%20Qt5%20release%20the%20webkit%20library%20is%20included%20by%20default%20and%20there%20are%20some%20issues%20trying%20to%20compile%20it.%20%3C%2FEM%3E%3C%2FP%3E%0A%3CP%3E%3CEM%3Euse%20the%20next%20line%20to%20avoid%20problems%20if%20not%20desired%20to%20use%20webkit.%3C%2FEM%3E%3C%2FP%3E%0A%3CP%3E%3C%2FP%3E%0A%3CP%3E%24%20.%2Finit-repository%20--no-webkit%20%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3C%2FP%3E%3CP%3E4.%20From%20the%20following%20path%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20gedit%20qtbase%2Fmkspecs%2Fdevices%2Flinux-imx6-g%2B%2B%2Fqmake.conf%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E5.%20At%20the%20top%20of%20the%20qmake.conf%2C%20there%20is%20a%20configure%20line.%20Copy%20and%20paste%20the%20configure%20line%20into%20a%20text%20file%20located%20%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%20in%20your%20build%20build%20directory.%20Edit%20the%20configure%20line%20to%20find%20your%20toolchain%20and%20filesystem.%20Also%20make%20sure%20to%20%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%20include%20the%20options%20-no-pch%2C%20-no-opengl%2C%20-opengl%20es2%2C%20Here%20is%20an%20example%20of%20%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%20a%20configure%20line.%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%3CEM%3EUpdate%3A%20In%20the%20latest%20Qt5%20stable%2C%20the%20option%20to%20compile%20the%20examples%2Fdemos%20is%20-compile-examples%2C%20instead%20of%20-make%20examples%20-make%20demos%3C%2FEM%3E%3C%2FP%3E%0A%3CP%3E%3CEM%3EIf%20you%20are%20running%20into%20problems%20with%20webkit%2C%26nbsp%3B%20use%20the%20option%20-no-icu%2C%20this%20will%20disable%20the%20webkit.%3CBR%20%2F%3E%3C%2FEM%3E%3C%2FP%3E%0A%3CP%3E%3C%2FP%3E%0A%3CP%3E%24%20cd%20%3CQTDIR%3E%3CBR%20%2F%3E%24%20cd%20qtbase%3CBR%20%2F%3E%24%20.%2Fconfigure%20-v%20-opensource%20-confirm-license%20-no-pch%20-no-xcb%20-no-opengl%20-opengl%20es2%26nbsp%3B%20%5C%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-make%20libs%20-device%20imx6%20%5C%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-compile-examples%20%5C%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-device-option%20CROSS_COMPILE%3D%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2Farm-fsl-linux-gnueabi-%20%5C%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-sysroot%20%3CROOTFS%3E%20-no-gcc-sysroot%20%5C%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-prefix%20%3CINSTALLDIR%3E%3C%2FINSTALLDIR%3E%3C%2FROOTFS%3E%3C%2FQTDIR%3E%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3C%2FP%3E%3CP%3E7.%20Make%20the%20textfile%20that%20has%20the%20configure%20line%20and%20executable%20and%20run%20it.%20When%20the%20configure%20summary%20is%20shown%20make%20sure%20the%20Qt5%20has%20openGL%20ES%202.0%20support.%20Do%20build%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20make%3CBR%20%2F%3E%24%20sudo%20make%20install%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%20When%20Qt5%20has%20finished%20building%2C%20Qt5%20will%20be%20installed%20in%20two%20places%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%201.%20%3CLOCATION%20of%3D%22%22%20rootfs%3D%22%22%3E%2F%3CINSTALLDIR%3E%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%202.%20%3CHOST%20machine%3D%22%22%3E%2F%3CINSTALL%20dir%3D%22%22%3E%3C%2FINSTALL%3E%3C%2FHOST%3E%3C%2FINSTALLDIR%3E%3C%2FLOCATION%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThis%20is%20good%20because%20now%20all%20the%20libraries%20and%20binaries%20for%20Qt5%20are%20installed%20on%20the%20host%20and%20the%20target%20filesystem.%20Therefore%2C%20the%20target%20already%20has%20all%20the%20libraries%20and%26nbsp%3B%20binaries%20needed%20to%20run%20Qt5.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E8.%20Also%20need%20to%20build%20qtjsbackend%20and%20qtdeclarative.%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cd%20%3CLOCATION%20to%3D%22%22%20qt5%3D%22%22%20git%3D%22%22%3E%3CBR%20%2F%3E%24%20cd%20qtjsbackend%3CBR%20%2F%3E%24%20..%2Fqtbase%2Fbin%2Fqmake%20-r%3CBR%20%2F%3E%24%20make%20%26amp%3B%26amp%3B%20sudo%20make%20install%3C%2FLOCATION%3E%3C%2FP%3E%0A%3CP%3E%24%20cd%20%3CLOCATION%20to%3D%22%22%20qt5%3D%22%22%20git%3D%22%22%3E%3CBR%20%2F%3E%24%20cd%20qtdeclarative%3CBR%20%2F%3E%24%20..%2Fqtbase%2Fbin%2Fqmake%20-r%3CBR%20%2F%3E%24%20make%20%26amp%3B%26amp%3B%20sudo%20sudo%20make%20install%3C%2FLOCATION%3E%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E9.%20Running%20Qt%20apps%20on%20target%20%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-%20Boot%20the%20target%20either%20with%20NFS%20or%20SD%20Image%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-%20Ensure%20that%20folder%20%3CINSTALLDIR%3E%20is%20copied%20on%20target%20file%20system%20at%20%E2%80%9C%2Fusr%2Flocal%E2%80%9D.%3CBR%20%2F%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-%20Launch%20application%20using%3C%2FINSTALLDIR%3E%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cd%20%2Fopt%2Fqt5%2Fexamples%2Fopengl%2Fhellowindow%3CBR%20%2F%3E%24%20.%2Fhellowindow%20-platform%20eglfs%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3CBR%20%2F%3E%3CSTRONG%3EFAQ%3A%3C%2FSTRONG%3E%3CBR%20%2F%3EOn%20the%20target%20file%20system%2C%20the%20location%20of%20target%20libaries%20and%20includes%20may%20present%20in%20arm-linux-gnueabi%20directory.%20Make%20sure%20to%20create%20soflinks%20to%20QT%20can%20find.%20For%20example%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cd%20%24(ROOTFS)%2Fusr%2Flib%3CBR%20%2F%3E%24%20ln%20-s%20arm-linux-gnueabi%2Flibffi.so.6%20libffi.so.6%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWhile%20building%20QT5%2C%20you%20may%20see%20a%20build%20error%20that%20libQt5V8.so.5%20is%20not%20found.%20This%20might%20be%20some%20problem%20to%20be%20addressed%20in%20QT.%20Workaround%20is%20to%3CBR%20%2F%3Ecopy%20all%20the%20binaries%20to%20correct%20path%20as%20like%20this%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3E%24%20cp%26nbsp%3B%20%3CROOTFS%3E%2F%3CINSTALLDIR%3E%2Flib%2F*%20%3CHOST%20machine%3D%22%22%3E%2F%3CINSTALLDIR%3E%2F.%3C%2FINSTALLDIR%3E%3C%2FHOST%3E%3C%2FINSTALLDIR%3E%3C%2FROOTFS%3E%3C%2FP%3E%0A%0A%0A%0A%0A%0A%0A%0A%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSTRONG%3EWhat%20is%20coming%20up%20next%3A%3C%2FSTRONG%3E%3CBR%20%2F%3E1.%20QT%20on%20X%20is%20already%20available%20on%20Yocto%20filesystem.%20Steps%20to%20enable%20GPU%20Acceleration%20TDB.%3CBR%20%2F%3E2.%20QT%20with%20Wayland%20support.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-LABS%20id%3D%22lingo-labs-1111319%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CLINGO-LABEL%3Ei.MX6_All%3C%2FLINGO-LABEL%3E%3C%2FLINGO-LABS%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111402%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111402%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20already%20done%20with%20it.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EOn%20Fri%2C%20Aug%2012%2C%202016%20at%2010%3A43%20AM%2C%20aravinthkumarjayaprakasam%20%26lt%3B%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111401%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111401%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3EPost%20you%20query%20in%20Qt%20Form.%20They%20will%20give%20support.%3C%2FP%3E%3CP%3E%3CA%20href%3D%22https%3A%2F%2Fforum.qt.io%2F%22%20title%3D%22https%3A%2F%2Fforum.qt.io%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3EHome%20%7C%20Qt%20Forum%3C%2FA%3E%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3EAravinth%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111400%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111400%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20aravinth%2C%3C%2FP%3E%3CP%3EYeah%2C%20you%20got%20my%20point.%20There%20is%20no%20target%20device%20platform%20for%20INTEGRITY%20in%3C%2FP%3E%3CP%3Eqt5.5%2Fqtbase%2Fmkspecs%2Fdevices%2F.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EIs%20there%20any%20possibility%20to%20create%20target%20platform%20in%3C%2FP%3E%3CP%3Eqt5.5%2Fqtbase%2Fmkspecs%2Fdevices%2F%3C%2FP%3E%3CP%3Eby%20our%20own%3F%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThis%20is%20the%20full%20command%20I%20used%20to%20configure%20the%20target%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Econfigure%20-embedded%20-xplatform%20qws%2Fintegrity-arm-cxarm%20-prefix%20%2F%3C%2FP%3E%3CP%3E-qt-sql-sqlite%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E-embedded%20-%20builds%20the%20embedded%20version%20of%20Qt%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E-xplatform%20qws%2Fintegrity-arm-cxarm%20-%20selects%20the%20arm-cxarm%20mkspec%20for%3C%2FP%3E%3CP%3EINTEGRITY%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E-qt-sql-sqlite%20-%20links%20sqlite%20directly%20into%20the%20Qt%20library%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAccording%20to%20my%20task%20the%20target%20should%20be%20%20integrity-arm-cxarm%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EOn%20Fri%2C%20Aug%2012%2C%202016%20at%207%3A50%20AM%2C%20aravinthkumar%20jayaprakasam%20%26lt%3B%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111399%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111399%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20%3CA%20class%3D%22jx-jive-macro-user%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fpeople%2Fbharathadwajakodanda%22%20target%3D%22_blank%22%3Ebharathadwajakodanda%3C%2FA%3E%E2%80%8B%2C%3C%2FP%3E%3CP%3EIn%20your%20Qt%20source%20Below%20location%20can%20you%20select%20which%20device%26nbsp%3B%20you%20want%20to%20use%3A%3C%2FP%3E%3CP%3E~%2Fqt5.5%2Fqtbase%2Fmkspecs%2Fdevices%2F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAfter%20that%20i%20will%20give%20you%20the%20support.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111398%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111398%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHello%20every%20one%2C%3C%2FP%3E%3CP%3EHow%20to%20configure%20and%20build%20Qt5.5%20for%20INTEGRITY%20RTOS%3F%3F%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111397%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111397%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20%3CA%20class%3D%22jx-jive-macro-user%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fpeople%2Fpeterchiu%22%20target%3D%22_blank%22%3Epeterchiu%3C%2FA%3E%E2%80%8B%3C%2FP%3E%3CP%3Ein%20Qt%205.5%20don't%20have%20qws.%20And%20also%20above%20mentioned%20problem%20i%20solved.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3EAravinth%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111396%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111396%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20aravinthkumar%20jayaprakasam%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EYou%20can%20try%20to%20copy%20the%20qws.conf%20on%20qt4%2C%20%3C%2FP%3E%3CP%3Ethen%20put%20the%20qws.conf%20into%20qt-everywhere-opensource-src-x.x.x%2Fqtbase%2Fmkspecs%2Fcommon%2F%26nbsp%3B%20(x.x.x%20is%20your%20qt%20version).%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThen%20configure%20again.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111395%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111395%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20All%3C%2FP%3E%3CP%3EI%20have%20QT5.5.0%2C%20i%20want%20to%20crosscompile%20into%20imx6-linux.%20So%20i%20used%20the%20following%20configuration%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E.%2Fconfigure%20-v%20-opensource%20-confirm-license%20-no-pch%20-no-xcb%20-no-opengl%20-opengl%20es2%26nbsp%3B%20%5C%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-make%20libs%20-device%20imx6%20%5C%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-compile-examples%20%5C%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-device-option%20CROSS_COMPILE%3D%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2Farm-fsl-linux-gnueabi-%20%5C%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-sysroot%20%2Fhome%2Fzumi%2FProject%2FImx6q%2Frootfs%2FL3.0.35_4.1.0_130816_images_MX6%2FRootfs%2Fopt%2Fqt%20-no-gcc-sysroot%20%5C%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20-prefix%20%2Fopt%2Fqt-vision%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EFollowing%20error%20i%20am%20getting%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ecc1plus%3A%20error%3A%20unrecognized%20command%20line%20option%20'-fuse-ld%3Dgold'%3C%2FP%3E%3CP%3Earm-fsl-linux-gnueabi-g%2B%2B%20-o%20libtest.so%20-shared%20-Wl%2C-Bsymbolic-functions%20-fPIC%20bsymbolic_functions.c%3C%2FP%3E%3CP%3Ebsymbolic_functions.c%3A2%3A2%3A%20error%3A%20%23error%20%22Symbolic%20function%20binding%20on%20this%20architecture%20may%20be%20broken%2C%20disabling%20it%20(see%20QTBUG-36129).%22%3C%2FP%3E%3CP%3ESymbolic%20function%20binding%20disabled.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAnd%20one%20more%20thing%2C%3C%2FP%3E%3CP%3EQT5.5.0%20didn't%20have%20qws.conf%20file.%20so%20in%20your%20attached%20qmake.conf%20file%20i%20remove%20%3CSPAN%20style%3D%22text-decoration%3A%20line-through%3B%22%3Einclude(..%2F..%2Fcommon%2Fqws.conf)%3C%2FSPAN%3E%20line.%3C%2FP%3E%3CP%3EIf%20i%20not%20remove%20the%20line%20it%20shows%20N%3CEM%3Eo%20such%20a%20file%20found%20error%3C%2FEM%3E.%20After%20the%20removing%20i%20got%20the%20above%20mentioned%20error.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3EAravinth%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111394%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111394%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20font-family%3A%20arial%2C%20helvetica%2C%20'helvetica%20neue'%2C%20verdana%2C%20sans-serif%3B%22%3EHi%20%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20font-family%3A%20arial%2C%20helvetica%2C%20'helvetica%20neue'%2C%20verdana%2C%20sans-serif%3B%22%3Enishad%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20font-family%3A%20arial%2C%20helvetica%2C%20'helvetica%20neue'%2C%20verdana%2C%20sans-serif%3B%22%3EI%20have%20successfully%20build%20Qt4.8.5%20for%20imx6.%20But%20when%20I%20tried%20to%20run%20the%20sample%20example%20I%20got%20the%20below%20error%EF%BC%9A%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eroot%40freescale%20%2Fopt%2Fqt4.8.5-arm-opengl%24%20cd%20examples%2Fopengl%2Fhellogl_es2%2F%3C%2FP%3E%3CP%3Eroot%40freescale%20%2Fopt%2Fqt4.8.5-arm-opengl%2Fexamples%2Fopengl%2Fhellogl_es2%24%20ls%3C%2FP%3E%3CP%3Ebubble.cpp%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20glwidget.h%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20main.cpp%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20texture.qrc%3C%2FP%3E%3CP%3Ebubble.h%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20hellogl_es2%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20mainwindow.cpp%3C%2FP%3E%3CP%3Eglwidget.cpp%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20hellogl_es2.pro%26nbsp%3B%20mainwindow.h%3C%2FP%3E%3CP%3E%26lt%3B-opengl%2Fexamples%2Fopengl%2Fhellogl_es2%24%20.%2Fhellogl_es2%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3C%2FP%3E%3CP%3Ebubble.cpp%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20glwidget.h%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20main.cpp%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20texture.qrc%3C%2FP%3E%3CP%3Ebubble.h%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20hellogl_es2%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20mainwindow.cpp%26nbsp%3B%26nbsp%3B%20%3C%2FP%3E%3CP%3Eglwidget.cpp%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20hellogl_es2.pro%26nbsp%3B%20mainwindow.h%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3C%2FP%3E%3CP%3E%26lt%3B-opengl%2Fexamples%2Fopengl%2Fhellogl_es2%24%20.%2Fhellogl_es2%20-platform%20eglfs%3C%2FP%3E%3CP%3ESegmentation%20fault%3C%2FP%3E%3CP%3Eroot%40freescale%20%2Fopt%2Fqt4.8.5-arm-opengl%2Fexamples%2Fopengl%2Fhellogl_es2%24%20%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111393%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111393%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHello%20All%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eis%20anyone%20able%20to%20compile%20QT5.5%20or%20QT%205.6%20for%20imx6q.%20This%20page%20is%20not%20helping%20me%20much%20because%20QT%205%20compilation%20section%20referring%20the%20gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%20fsl%20tool%20chain%20whcih%20is%20not%20available%20for%20download%20because%20it%20is%20pretty%20quite%20old.If%20i%20am%20using%20linaro%20latest%20tolchain%204.8%20or%204.7%20QT%20doesn't%20compile.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20would%20really%20appreciate%20if%20someone%20let%20me%20know%20which%20is%20the%20correct%20tool-chain%20to%20compile%20QT%205.5%20or%20QT%205.6%20version%20on%20imx6.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111392%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111392%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%2351626f%3B%20font-family%3A%20arial%2C%20helvetica%2C%20'helvetica%20neue'%2C%20verdana%2C%20sans-serif%3B%20background-color%3A%20%23f6f6f6%3B%22%3EHi%20all%20%3CSPAN%20style%3D%22color%3A%20%239aa9af%3B%20font-family%3A%20arial%2C%20helvetica%2C%20'helvetica%20neue'%2C%20verdana%2C%20sans-serif%3B%22%3E%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fpeople%2FPrabhuSundararaj%22%20target%3D%22_blank%22%3EPrabhuSundararaj%3C%2FA%3E%3CBR%20%2F%3E%3CBR%20%2F%3EThe%20git%20url%26nbsp%3B%20%22git%3A%2F%2Fgitorious.org%2Fqt%2Fqt5.git%20qt5%22%26nbsp%3B%20is%20not%20work.%3CBR%20%2F%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3EIs%20it%20new%20git%20url%26nbsp%3B%20for%20qt5%20%3F%20Because%20I%20want%20to%20use%20LTIB%20porting%20Qt5.%3CBR%20%2F%3E%3CBR%20%2F%3E%3C%2FP%3E%3CP%3EPlease%20help%2C%20thanks%20all.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111391%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111391%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EThese%20patches%20are%20for%20Qt4%20not%20for%20Qt5%20right%EF%BC%9F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111390%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111390%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Nishad%2C%3C%2FP%3E%3CP%3E%20Thanks%20for%20replying.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20am%20using%20LTIB%20for%20building%20my%20image.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eyes%2C%20I%20built%20QT4.8%20manually%20with%20steps%20as%20mentioned%20on%20this%20page.%3C%2FP%3E%3CP%3EAlso%2C%20the%20configuration%20script%20is%20same%20as%20given%20here.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E.%2Fconfigure%20-qpa%20-arch%20arm%20-xplatform%20qws%2Flinux-imx6-g%2B%2B%20-no-largefile%20-no-accessibility%20%5C%3C%2FP%3E%3CP%3E-opensource%20-verbose%20-system-libpng%20-system-libjpeg%20-system-freetype%20-fast%20-opengl%20es2%20-egl%20-confirm-license%20%5C%3C%2FP%3E%3CP%3E-qt-zlib%26nbsp%3B%20-qt-libpng%26nbsp%3B%20-no-webkit%20-no-multimedia%20%5C%3C%2FP%3E%3CP%3E-make%20examples%20-make%20demos%20%5C%3C%2FP%3E%3CP%3E-release%20-make%20libs%20-exceptions%20-no-qt3support%20-prefix%20%2Fopt%2Fqt4.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3EParitosh%20Singh%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111389%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111389%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ESorry%20for%20the%20delay%20in%20reply%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ECould%20you%20give%20me%20more%20information%20about%20your%20problem%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAre%20you%20using%20LTIB%20to%20build%20your%20image%20or%20Yocto%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EDid%20you%20manually%20build%20the%20QT%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAlso%20can%20you%20mail%20me%20your%20configuration%20script%3F%20There%20could%20be%20a%20possibility%20that%20the%20QT%20is%20not%20properly%20built.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Enishad%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111388%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111388%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20have%20successfully%20build%20Qt4.8%20for%20imx6.%20But%20when%20I%20tried%20to%20run%20the%20sample%20example%20I%20got%20the%20below%20error%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%22Could%20not%20create%20the%20egl%20surface%3A%20error%20%3D%200x300b%22%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EPlease%20help%20me%20out%20of%20this.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3EParitosh%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111387%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111387%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHI%20nice%20tutorial....%20can%20you%20pls%20give%20some%20insights%20about%20qt%20webkit%20as%20well%20how%20to%20render%20a%20fullscreen%20HTML5%20based%20webpage%20using%20that...%20am%20really%20new%20to%20qt...%20pls%20guide%20me%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111386%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111386%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20all%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20tried%20build%20qt5%20like%20in%20this%20doc.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EMy%20configuration%20command%20is%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E.%2Fconfigure%20-v%20-opensource%20-confirm-license%20-make%20libs%20-device%20imx6%26nbsp%3B%20-device-option%20CROSS_COMPILE%3D%2Fhome%2Fx0158990%2Fhdd%2Ftools%2Fpoky%2F1.7%2Fsysroots%2Fx86_64-pokysdk-linux%2Fusr%2Fbin%2Farm-poky-linux-gnueabi%2Farm-poky-linux-gnueabi-%26nbsp%3B%20-sysroot%20%2Fhome%2Fx0158990%2Fhdd%2Ftools%2Fpoky%2F1.7%2Fsysroots%2Fx86_64-pokysdk-linux%20-no-gcc-sysroot%26nbsp%3B%20-prefix%20%2Fhome%2Fx0158990%2Fwork%2Ftools%2FQT5%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20have%20got%20error%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EPrecompiled-headers%20support%20enabled.%3C%2FP%3E%3CP%3E%2Fhome%2Fx0158990%2Fhdd%2Ftools%2Fpoky%2F1.7%2Fsysroots%2Fx86_64-pokysdk-linux%2Fusr%2Fbin%2Farm-poky-linux-gnueabi%2Farm-poky-linux-gnueabi-g%2B%2B%20-c%20-fvisibility%3Dhidden%20fvisibility.c%3C%2FP%3E%3CP%3ESymbol%20visibility%20control%20enabled.%3C%2FP%3E%3CP%3E%2Fhome%2Fx0158990%2Fhdd%2Ftools%2Fpoky%2F1.7%2Fsysroots%2Fx86_64-pokysdk-linux%2Fusr%2Fbin%2Farm-poky-linux-gnueabi%2Farm-poky-linux-gnueabi-g%2B%2B%20-o%20libtest.so%20-shared%20-Wl%2C-Bsymbolic-functions%20-fPIC%20bsymbolic_functions.c%3C%2FP%3E%3CP%3E%3CSTRONG%3Ebsymbolic_functions.c%3A2%3A2%3A%20error%3A%20%23error%20%22Symbolic%20function%20binding%20on%20this%20architecture%20may%20be%20broken%2C%20disabling%20it%20(see%20QTBUG-36129).%22%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%3CSTRONG%3E%20%23error%20%22Symbolic%20function%20binding%20on%20this%20architecture%20may%20be%20broken%2C%20disabling%20it%20(see%20QTBUG-36129).%22%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%26nbsp%3B%20%5E%3C%2FP%3E%3CP%3ESymbolic%20function%20binding%20disabled.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EIn%20%3CSTRONG%3EQTBUG-36129%3C%2FSTRONG%3E%20bug's%20description%20I%20didn't%20found%20applicable%20solution.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EPlease%20help!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111385%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111385%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20style%3D%22text-decoration%3A%20underline%3B%22%3E%3CSTRONG%3EConfiguration%20Script%3A%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E.%2Fconfigure%20-v%20-opensource%20-confirm-license%20-no-sse2%20-no-sse3%20-no-ssse3%3C%2FP%3E%3CP%3E-no-sse4.1%20-no-sse4.2%20-no-avx%20-no-xcb%20-no-sql-mysql%20-no-sql-db2%3C%2FP%3E%3CP%3E-no-sql-ibase%20-no-sql-oci%20-no-sql-odbc%20-no-sql-tds%20-no-sql-sqlite2%20%3C%2FP%3E%3CP%3E-no-pch%20-no-opengl%20-opengl%20es2%26nbsp%3B%20-wayland%20-make%20libs%20-device%20imx6%20-make%3C%2FP%3E%3CP%3Eexamples%20-device-option%3C%2FP%3E%3CP%3ECROSS_COMPILE%3D%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2Farm-fsl-linux-gnueabi-%3C%2FP%3E%3CP%3E-sysroot%20%2Fhome%2Fsumeet%2Fltib%2Frootfs%20-no-gcc-sysroot%20-prefix%20%2Fusr%2Flocal%2FQT_5%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22text-decoration%3A%20underline%3B%22%3E%3CSTRONG%3E%3CBR%20%2F%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22text-decoration%3A%20underline%3B%22%3E%3CSTRONG%3ELink%20to%20be%20followed%20thoughtfully%20along%20with%20the%20procedure%20given%20on%20the%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSTRONG%20style%3D%22text-decoration%3A%20underline%3B%22%3Ecurrent%20link%20above%3A%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22http%3A%2F%2Fqt-project.org%2Fwiki%2FRaspberryPi_Beginners_guide%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fqt-project.org%2Fwiki%2FRaspberryPi_Beginners_guide%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20used%20the%20%22cross-compiled-tools%22%20to%20compile%20QT-5%20%3C%2FP%3E%3CP%3Eand%20built%20individual%20modules%20using%20the%20link.%3C%2FP%3E%3CP%3Eyou%20need%20to%20download%20it%20as%20use%20it%20taking%20reference%20of%20the%20script%20given%20below%20for%20setting%20up%20path.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSTRONG%20style%3D%22text-decoration%3A%20underline%3B%22%3ECleaning%20%3C%2FSTRONG%3E%3CSPAN%20style%3D%22text-decoration%3A%20underline%3B%22%3E%3CSTRONG%3Ea_config_if_compile_wrong%3A%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3Esudo%20git%20submodule%20foreach%20--recursive%20%22git%20clean%20-dfx%22%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSTRONG%20style%3D%22text-decoration%3A%20underline%3B%22%3EScript%20for_setting_paths%3A%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E.%2FfixQualifiedLibraryPaths%20%2Fhome%2Fsumeet%2Fltib%2Frootfs%3C%2FP%3E%3CP%3E%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2Farm-fsl-linux-gnueabi-g%2B%2B%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EYou%20might%20get%20fontconfig%20errors%2C%20which%20you%20need%20to%20solve%20by%20analysing%3C%2FP%3E%3CP%3Ethe%20error.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAlthough%20i%20was%20able%20to%20install%20QT5%20%2C%20i%20still%20have%20problems%20with%20fonts%2C%20i%3C%2FP%3E%3CP%3Eam%20not%20able%20to%20see%20fonts%20in%20the%20GUI.%20i%20am%20working%20on%20it.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eregards%3C%2FP%3E%3CP%3Enishad%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111384%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111384%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EOk%20nishad%2C%20i'm%20waiting%20for%20your%20procedure%20!%20thank's%20in%20advance%20!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111383%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111383%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20successfully%20cross%20compiled%20QT5%20for%20my%20custom%20iMX6Q%20board%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20used%20LTIB%203.0.35_4.1.0%20kernel%20for%20building%20my%20u-boot%2C%20kernel%20and%20rootfs.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20am%20attaching%20documents%20and%20links%20that%20i%20prepared%20to%20help%20anyone%20who%20%3C%2FP%3E%3CP%3Ewishes%20to%20build%20QT5%2C%20it%20might%20not%20help%20you%20directly%2C%20but%20the%20procedure%20%3C%2FP%3E%3CP%3Eshould%20help%20you.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eregards%2C%3C%2FP%3E%3CP%3ENishad%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111382%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111382%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CEM%3E%3CSTRONG%3EHi%20all%2C%20i'm%20trying%20to%20build%20qt5%20for%20a%20udoo%20quad%20board%20(use%20imx6%20quad%3CA%20href%3D%22http%3A%2F%2Fwww.udoo.org%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%20http%3A%2F%2Fwww.udoo.org%2F%3C%2FA%3E)%20but%20i'm%20blocked%20at%20.%2Fconfigure.%20i%20had%20some%20errors%20%3A%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E%3CEM%3E%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Ffsl-linaro-toolchain%2Farm-fsl-linux-gnueabi%2Fbin%2Fg%2B%2B%20-c%20-pipe%20-march%3Darmv7-a%20-mfpu%3Dneon%20-DLINUX%3D1%20-DEGL_API_FB%3D1%20-mfloat-abi%3Dsoftfp%20-g%20-Wall%20-W%20-fPIE%20-I..%2F..%2Fmkspecs%2Fdevices%2Flinux-imx6-g%2B%2B%20-I.%20-I..%2F..%2F..%2F..%2Fusr%2Finclude%20-I..%2F..%2F..%2F..%2Fusr%2Fbin%20-o%20arch.o%20arch.cpp%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eg%2B%2B%3A%20error%20trying%20to%20exec%20'cc1plus'%3A%20execvp%3A%20No%20such%20file%20or%20directory%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EMessages%20de%20l'assembleur%3A%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EErreur%20fatale%3A%20option%20-march%3D%20invalide%3A%20%C2%AB%20armv7-a%20%C2%BB%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Egmake%3A%20***%20%5Barch.o%5D%20Erreur%201%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EUnable%20to%20determine%20architecture!%3C%2FEM%3E%3CBR%20%2F%3E%20%3CBR%20%2F%3E%3CEM%3ECould%20not%20determine%20the%20target%20architecture!%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3ETurn%20on%20verbose%20messaging%20(-v)%20to%20see%20the%20final%20report.%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EDetermining%20architecture...%20()%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eg%2B%2B%20-c%20-pipe%20-g%20-Wall%20-W%20-fPIE%20-I..%2F..%2Fmkspecs%2Flinux-g%2B%2B%20-I.%20-o%20arch.o%20arch.cpp%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eg%2B%2B%20-o%20arch%20arch.o%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3E%20Found%20architecture%20in%20binary%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3ECFG_HOST_ARCH%3D%22i386%22%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3ECFG_HOST_CPUFEATURES%3D%22%22%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3ESystem%20architecture%3A%20'unknown'%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EHost%20architecture%3A%20'i386'%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EC%2B%2B11%20auto-detection...%20()%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3E%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Ffsl-linaro-toolchain%2Farm-fsl-linux-gnueabi%2Fbin%2Fg%2B%2B%20-c%20-pipe%20-march%3Darmv7-a%20-mfpu%3Dneon%20-DLINUX%3D1%20-DEGL_API_FB%3D1%20-mfloat-abi%3Dsoftfp%20-O2%20-std%3Dc%2B%2B0x%20-Wall%20-W%20-fPIE%20-I..%2F..%2F..%2Fmkspecs%2Fdevices%2Flinux-imx6-g%2B%2B%20-I.%20-I%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Finclude%20-I%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Fbin%20-o%20c%2B%2B11.o%20c%2B%2B11.cpp%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eg%2B%2B%3A%20error%20trying%20to%20exec%20'cc1plus'%3A%20execvp%3A%20No%20such%20file%20or%20directory%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EMessages%20de%20l'assembleur%3A%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EErreur%20fatale%3A%20option%20-march%3D%20invalide%3A%20%C2%AB%20armv7-a%20%C2%BB%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Egmake%3A%20***%20%5Bc%2B%2B11.o%5D%20Erreur%201%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EC%2B%2B11%20disabled.%3C%2FEM%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E.......%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E......%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E......%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E......%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E%3CEM%3EOpenGL%20ES%202.x%20auto-detection...%20()%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3E%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Ffsl-linaro-toolchain%2Farm-fsl-linux-gnueabi%2Fbin%2Fg%2B%2B%20-c%20-pipe%20-march%3Darmv7-a%20-mfpu%3Dneon%20-DLINUX%3D1%20-DEGL_API_FB%3D1%20-mfloat-abi%3Dsoftfp%20-O2%20-Wall%20-W%20-fPIE%20-I..%2F..%2F..%2Fmkspecs%2Fdevices%2Flinux-imx6-g%2B%2B%20-I.%20-I%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Finclude%2FGLES2%20-I%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Finclude%20-I%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Fbin%20-o%20opengles2.o%20opengles2.cpp%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eg%2B%2B%3A%20error%20trying%20to%20exec%20'cc1plus'%3A%20execvp%3A%20No%20such%20file%20or%20directory%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EMessages%20de%20l'assembleur%3A%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EErreur%20fatale%3A%20option%20-march%3D%20invalide%3A%20%C2%AB%20armv7-a%20%C2%BB%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Egmake%3A%20***%20%5Bopengles2.o%5D%20Erreur%201%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EOpenGL%20ES%202.x%20disabled.%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EThe%20OpenGL%20ES%202.0%20functionality%20test%20failed!%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3E%20You%20might%20need%20to%20modify%20the%20include%20and%20library%20search%20paths%20by%20editing%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3E%20QMAKE_INCDIR_OPENGL_ES2%2C%20QMAKE_LIBDIR_OPENGL_ES2%20and%20QMAKE_LIBS_OPENGL_ES2%20in%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3E%20%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fqt5%2Fqtbase%2Fmkspecs%2Fdevices%2Flinux-imx6-g%2B%2B.%20%3C%2FEM%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E%3CSTRONG%3EFor%20information%20the%20Udoobuntu%20file%20system%20%3A%20%3CA%20href%3D%22http%3A%2F%2Fwww.udoo.org%2Fdownloads%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fwww.udoo.org%2Fdownloads%2F%20%3C%2FA%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E%3CSTRONG%3E%20the%20link%20for%20the%20tutorial%20%3A%20%3CA%20href%3D%22http%3A%2F%2Fwww.udoo.org%2FProjectsAndTutorials%2Fhow-to-build-qt5-for-udoo%2F%3FportfolioID%3D1394%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fwww.udoo.org%2FProjectsAndTutorials%2Fhow-to-build-qt5-for-udoo%2F%3FportfolioID%3D1394%3C%2FA%3E%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E%3CSTRONG%3Emy%20qmake.conf%20%3A%3C%2FSTRONG%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3Einclude(..%2Fcommon%2Flinux_device_pre.conf)%3CBR%20%2F%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3EROOTFS_PATH%3D%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3ETOOLCHAIN_PREFIX%3D%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Ffsl-linaro-toolchain%2Farm-fsl-linux-gnueabi%2Fbin%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3EEGLFS_PLATFORM_HOOKS_SOURCES%20%3D%20%24%24PWD%2Fqeglfshooks_imx6.cpp%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_INCDIR%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20%24%24%7BROOTFS_PATH%7D%2Fusr%2Finclude%20%24%24%7BROOTFS_PATH%7D%2Fusr%2Fbin%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_LIBDIR%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20%24%24%7BROOTFS_PATH%7D%2Fusr%2Flib%2Farm-linux-gnueabihf%20%24%24%7BROOTFS_PATH%7D%2Fusr%2Flib%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_INCDIR_OPENGL_ES2%20%2B%3D%20%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Finclude%2FGLES2%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_LIBDIR_OPENGL_ES2%20%2B%3D%20%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Flib%2FGLESv2%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3E%23QMAKE_LIBS_EGL%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Flib%2FGLESv2%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3E%23QMAKE_LIBS_OPENGL_ES2%26nbsp%3B%20%2B%3D%20%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Flib%2FGLESv2%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3E%23QMAKE_LIBS_OPENVG%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fusr%2Flib%2FOpenVG%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_LIBS_EGL%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20-lEGL%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_LIBS_OPENGL_ES2%26nbsp%3B%20%2B%3D%20-lGLESv2%20-lEGL%20-lGAL%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_LIBS_OPENVG%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20-lOpenVG%20-lEGL%20-lGAL%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_LFLAGS%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20-Wl%2C-rpath-link%2C%24%24%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Flib%2Farm-linux-gnueabihf%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3EIMX6_CFLAGS%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3D%20-march%3Darmv7-a%20-mfpu%3Dneon%20-DLINUX%3D1%20-DEGL_API_FB%3D1%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_CFLAGS%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20%24%24IMX6_CFLAGS%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3EQMAKE_CXXFLAGS%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%2B%3D%20%24%24IMX6_CFLAGS%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3Einclude(..%2Fcommon%2Flinux_arm_device_post.conf)%3C%2FEM%3E%3CBR%20%2F%3E%3CBR%20%2F%3E%3CEM%3Eload(qt_config)%20%3C%2FEM%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSTRONG%3Eand%20my%20configure%20%3A%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CEM%3E.%2Fconfigure%20-prefix%20%2Fopt%2Fqt5%20-make%20libs%20-no-pch%20-no-opengl%20-device%20imx6%20-device-option%20CROSS_COMPILE%3D%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Ffsl-linaro-toolchain%2Farm-fsl-linux-gnueabi%2Fbin%2F%20-no-largefile%20-opengl%20es2%20-qt-zlib%20-qt-libpng%20-qt-libjpeg%20-no-nis%20-no-cups%20-gui%20-make%20examples%20-sysroot%20%2Fhome%2Fmodjo%2FUdoo%2FQt5_build%2Fexemples%20-no-gcc-sysroot%20-opensource%20-confirm-license%20-qreal%20float%20-v%20%3CSPAN%20style%3D%22font-family%3A%20mceinline%3B%22%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSTRONG%20style%3D%22font-family%3A%20mceinline%3B%22%3EDo%20you%20an%20idea%20to%20resolve%20this%20%3F%3CEM%3E%3CBR%20%2F%3E%3C%2FEM%3E%3C%2FSTRONG%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111381%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111381%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI'm%20building%20qt-5.1.1%20from%20dora%20branch%20of%20yocto%20project.%20All%20fine%20works%20instead%20HTML5%20video%20from%20simple%20browser%20in%20qtwebkit-examples%3C%2FP%3E%3CP%3EI%20see%20player%20controls%2C%20but%20it%20doesn't%20work.%20On%20some%20videos%20i%20can%20view%20freeze%20frame%20of%20videos%2C%20but%20it%20not%20playing.%3C%2FP%3E%3CP%3EIn%20console%20gstreamer%20output%20messages%20like%20this%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EQt%20Warning%3A%20Could%20not%20find%20a%20location%20of%20the%20system's%20Compose%20files.%20Consider%20setting%20the%20QTCOMPOSE%20environment%20variable.%3C%2FP%3E%3CP%3Elibpng%20warning%3A%20iCCP%3A%20Not%20recognizing%20known%20sRGB%20profile%20that%20has%20been%20edited%3C%2FP%3E%3CP%3E%3CSPAN%3EReceived%20finished%20signal%20while%20progress%20is%20still%3A%2010%20Url%3A%26nbsp%3B%20QUrl(%20%22%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22http%3A%2F%2Fqt-project.org%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fqt-project.org%2F%3C%2FA%3E%3CSPAN%3E%22%20)%26nbsp%3B%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%3EAiur%3A%203.0.11%20%3C%2FP%3E%3CP%3ECore%3A%20MPEG4PARSER_06.07.04%26nbsp%3B%20build%20on%20Dec%26nbsp%3B%205%202013%2011%3A41%3A38%3C%2FP%3E%3CP%3E%26nbsp%3B%20mime%3A%20video%2Fquicktime%3B%20audio%2Fx-m4a%3B%20application%2Fx-3gp%3C%2FP%3E%3CP%3E%26nbsp%3B%20file%3A%20%2Fusr%2Flib%2Fimx-mm%2Fparser%2Flib_mp4_parser_arm11_elinux.so.3.2%3C%2FP%3E%3CP%3EContent%20Info%3A%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20URI%3A%3C%2FP%3E%3CP%3E%3CSPAN%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fr1---sn-8xb5-px8e.googlevideo.com%2Fvideoplayback%3Fip%3D212.90.165.14%26amp%3Brequire%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fr1---sn-8xb5-px8e.googlevideo.com%2Fvideoplayback%3Fip%3D212.90.165.14%26amp%3Brequire%3C%2FA%3E%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20ssl%3Dyes%26amp%3Bmws%3Dyes%26amp%3Bsource%3Dyoutube%26amp%3Bupn%3D4-tA0Ie6tDA%26amp%3Bmv%3Dm%26amp%3Bsparams%3Did%2Cip%2Cipbits%2Citag%2Cra%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20tebypass%2Crequiressl%2Csource%2Cupn%2Cexpire%26amp%3Bkey%3Dyt5%26amp%3Bipbits%3D0%26amp%3Bmt%3D1401803916%26amp%3Bid%3Do-ABczKx%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20qqFwtM_XhBgSvGnsGqyiHL18Wy6SqK0BZepcFQ%26amp%3Bsignature%3D121A2CB3142FB772CD72A9F1D872603%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20C749A2B74.0370EDFC498A96A43C8F8A98C10184E14158A0D2%26amp%3Bsver%3D3%26amp%3Bratebypass%3Dyes%26amp%3Bexpire%3D%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%201401827798%26amp%3Bms%3Dau%26amp%3Bfexp%3D908548%2C912321%2C913434%2C916611%2C923341%2C926122%2C930008%26amp%3Bitag%3D18%26amp%3Bc%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20pn%3DVgAqvxj2iI2hp45w%26amp%3Bptk%3Dyoutube_none%26amp%3Bpltype%3Dcontentugc%26amp%3Bc%3DWEB%26amp%3Bcver%3Dhtml5%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Seekable%26nbsp%3B%20%3A%20Yes%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Size(byte)%3A%2032830110%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EMovie%20Info%3A%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Seekable%26nbsp%3B%20%3A%20Yes%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Live%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3A%20No%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Duration%26nbsp%3B%20%3A%200%3A11%3A52.503360000%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20ReadMode%26nbsp%3B%20%3A%20Track%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Track%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3A%202%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ETrack%2000%20%5Bvideo_000000%5D%20Enabled%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Duration%3A%200%3A11%3A52.503360000%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Language%3A%20und%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Mime%3A%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20video%2Fx-h264%2C%20parsed%3D(boolean)true%2C%20width%3D(int)640%2C%20height%3D(int)360%2C%20framerate%3D(%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20fraction)24000%2F1001%3C%2FP%3E%3CP%3ETrack%2001%20%5Baudio_000000%5D%20Enabled%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Duration%3A%200%3A11%3A52.503360000%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Language%3A%20und%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20Mime%3A%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20audio%2Fmpeg%2C%20mpegversion%3D(int)4%2C%20channels%3D(int)2%2C%20rate%3D(int)44100%2C%20bitrate%3D(int)9%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%206000%2C%20framed%3D(boolean)true%2C%20stream-format%3D(string)raw%2C%20codec_data%3D(buffer)121000%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%2000000000000000000000000000%3C%2FP%3E%3CP%3EBeep%3A%203.0.11%20%3C%2FP%3E%3CP%3ECore%3A%20AAC%20decoder%20Wrapper%26nbsp%3B%20build%20on%20Jan%2022%202014%2015%3A42%3A53%3C%2FP%3E%3CP%3E%26nbsp%3B%20mime%3A%20audio%2Fmpeg%2C%20mpegversion%3D(int)%7B2%2C4%7D%3C%2FP%3E%3CP%3E%26nbsp%3B%20file%3A%20%2Fusr%2Flib%2Fimx-mm%2Faudio-codec%2Fwrap%2Flib_aacd_wrap_arm12_elinux.so.3%3C%2FP%3E%3CP%3ECODEC%3A%20BLN_MAD-MMCODECS_AACD_ARM_03.07.00_CORTEX-A8%26nbsp%3B%20build%20on%20Sep%2018%202013%2010%3A29%3A53.%3C%2FP%3E%3CP%3E%5B---%26gt%3BFINALIZE%20aiurdemux%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EQtMultimedia%20examples%20working%20correctly.%3C%2FP%3E%3CP%3EWhats%20wrong%20and%20how%20can%20I%20fix%20it%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111380%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111380%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20am%20trying%20to%20setup%20a%20cross%20compiler%20setup%20for%20the%20RIOT%20(IMX6)%20on%20opensuse%2013.21%20(64)%2C%26nbsp%3B%20as%20I%20would%20like%20to%20use%20qt%20with%20qws%20under%20Ubuntu%20Image%20(Must%20still%20figure%20out%20how-to%20disable%20the%20GUI%2C%20as%20this%20is%20not%20a%20'standard'%20Unbuntu%20startup)%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EStep%206%20assumes%20one%20has%20a%20cross%20compiler%20already%20installed.%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20export%20PATH%3D%24PATH%3A%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EHow%20can%20I%20install%20this%2C%26nbsp%3B%20where%20can%20I%20download%20it%2C%20as%20it%20seem%20to%20'included'%20in%20some%20BSD%20package.%3C%2FP%3E%3CP%3EThanks%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111379%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111379%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHey%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20successfully%20installed%20qt%204.8%20in%20my%20target.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EInitially%20i%20had%204.6.0%20on%20my%20target%2C%20which%20had%20audio%20demo%20codes.%204.8%20doesn't%20seem%20to%20have%20any%20multimedia%20demos.%20The%20existing%20examples%20execute%20correctly.%20however%20any%20example%20which%20i%20used%20to%3C%2FP%3E%3CP%3Erun%20in%204.6.0%20using%20qws%20doesn't%20seem%20to%20execute%20on%204.8.%20It%20crashes%20with%20a%20%22%3CSTRONG%3Esegmentation%20fault%3C%2FSTRONG%3E%22.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20have%20qtCreater%202.7.2%26nbsp%3B%20with%20Qt%204.8.4%20on%20my%20host%2C%20and%20any%20example%20code%20for%20instance%20a%20system%20call%20code%20or%20a%20mmap%20call%20doesn't%20seem%20to%20work.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20had%20shifted%20to%204.8%20assuming%20and%20expecting%20better%20audio%20and%20Serial%20communication%20support.%20but%20simple%20codes%20compiled%20do%20not%20work%20in%20ltib.%20It%20is%20very%20frustrating.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ECan%20anyone%20please%20help%20me%20out%20with%20that.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eregards%2C%3C%2FP%3E%3CP%3Enishad%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111378%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111378%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20found%20out%20that%20the%20hellogl_es2%20example%20is%20not%20able%20to%20run%20when%20you%20dont%20have%20X11%20or%20wayland.%20You%20need%20a%20windowing%20system%20because%20the%20hellogl_es2%20encapsulates%20an%20QGLWidget%20within%20another%20widget.%20Better%20is%20to%20use%20QT5%20%2B%20QML.%20I%20will%20give%20it%20a%20try.%20And%20probably%20your%20error%20is%20because%20you%20have%20to%20edit%20the%20file%20qtbase%2Fmkspecs%2Fdevices%2Flinux-imx6-g%2B%2B%2Fqmake.conf%20and%20add%20-mfloat-abi%3Dhard%20in%20IMX6_CFLAGS.%20Give%20it%20a%20try.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111377%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111377%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EAFAIK%20the%20qt-in-use-image%20only%20produces%20a%20rootfs%20for%20Qt%204.8%20-%20but%20still%20the%20version%20should%20be%20good%20enough%20to%20compile%20the%20hellogl_es2%20example.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20tried%20to%20compile%20the%20application%20with%20my%20Qt%205.1.1%20toolchain%20(see%20link%20in%20my%20previous%20comment)%20but%20it%20didn't%20work%20-%20gnu%2Fstubs-soft.h%20wasn't%20found...%20I%20didn't%20recognize%20this%20error%20before%20and%20don't%20know%20how%20to%20handle%20this%20-%20so%20sorry%2C%20I%20cant%20help%20you%20with%20that%20%3CIMG%20id%3D%22smileysad%22%20class%3D%22emoticon%20emoticon-smileysad%22%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fi%2Fsmilies%2F16x16_smiley-sad.png%22%20alt%3D%22Smiley%20Sad%22%20title%3D%22Smiley%20Sad%22%20%2F%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111376%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111376%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHey%20I%20am%20experimenting%20with%20Yocto%20and%20my%20Mx6%20Board.%20I%20am%20using%20dora%20and%20I%20used%20qte-in-use-image%20to%20%22bake%22%20an%20image.%20I%20want%20to%20experiment%20with%20QT%20%2B%20OpenGL%20using%20the%20framebuffer.%3C%2FP%3E%3CP%3EI%20disable%20X11%20and%20Wayland%20with%20the%20flag%3A%20DISTRO_FEATURES_remove%20%3D%20%22x11%20wayland%22%20on%20my%20local.conf%3C%2FP%3E%3CP%3EI%20am%20able%20to%20run%20the%20vivante%20vdk%20examples%20but%20I%20have%20not%20being%20able%20to%20run%20the%20hellogl_es2%20example%20from%20OpenGL.%20I%20get%20a%20pitch%20black%20rendering.%20Have%20you%20being%20able%20to%20run%20the%20OpenGL%20examples%20from%20QT%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111375%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111375%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHello%20Bradley%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI'm%20starting%20with%20IMX6%20and%20Qt.%20%3C%2FP%3E%3CP%3EI%20followed%20the%20instructions%20but%20I'm%20having%20the%20same%20issue%20as%20yours.%20I%20have%20the%20same%20directories%20after%20the%20install%2C%20nothing%20more%2C%20and%20some%20errors%20during%20%22make%22%20and%20%22make%20install%22.%20%3C%2FP%3E%3CP%3EDid%20you%20find%20a%20solution%20to%20build%20Qt4.8%20for%20the%20IMX6%3F%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ENicolas%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111374%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111374%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20solved%20that%20issue.%3C%2FP%3E%3CP%3EIt%20would%20be%20a%20good%20choice%20to%20comment%20out%20those%20code%20which%20reports%20%20%E2%80%9CEGLFS%3A%20OpenGL%20windows%20cannot%20be%20mixed%20with%20others%E2%80%9D%2C%20that%20would%20make%20it%20fine.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EKind%20regards%3C%2FP%3E%3CP%3ERichard%20Chen%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111373%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111373%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20would%20suggest%20everyone%20who%20uses%20already%20YOCTO%20for%20their%20images%20to%20also%20use%20it%20to%20compile%20Qt%3C%2FP%3E%3CP%3ESee%20for%20a%20working%20Qt5%20tutorial%20here%3A%20%3CA%20__default_attr%3D%2299366%22%20__jive_macro_name%3D%22document%22%20class%3D%22jive_macro_document%20jive_macro%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2F%22%20target%3D%22_blank%22%3E%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EEveryone%20who%20doesn't%20use%20YOCTO%20not%20'til%20now%3A%20DO%20IT%20%3Asmileygrin%3A%20read%20more%20about%20it%20in%20the%20%3CA%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fdocs%2FDOC-94849%22%20target%3D%22_blank%22%3EYocto%20Training%20-%20HOME%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EIf%20you%20want%20to%20use%20Qt4%2C%20you%20can%20do%20this%20even%20easier%20because%20of%20the%20different%20layers%20that%20YOCTO%20delivers...%3C%2FP%3E%3CP%3Efor%20the%20board%3A%20qt-in-use-image%20or%20qte-in-use-image%3C%2FP%3E%3CP%3Eas%20toolchain%3A%20meta-toolchain-qt%20or%20meta-toolchain-qte%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EHave%20fun!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111372%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111372%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%20xicai%20chen.%3C%2FP%3E%3CP%3EI%20have%20the%20same%20problem%20with%20hellowindow%20application%20in%20Qt%205%20(%3CSTRONG%3EEGLFS%3A%20OpenGL%20windows%20cannot%20be%20mixed%20with%20others%3C%2FSTRONG%3E)%3CBR%20%2F%3EYou%20solved%20it%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111371%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111371%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%231f497d%3B%22%3EAs%20I%20noticed%20that%20there%20is%20a%20patch%20file%200001-add-i.MX6-EGL-support.patch%20for%20Qt%204.8%2C%20however%2C%20there%20is%20not%20such%20a%20patch%20for%20QT5.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%231f497d%3B%22%3EDid%20you%20miss%20it%3F%20There%20might%20be%20a%20similar%20patch%20to%20Qt5.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%231f497d%3B%22%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%231f497d%3B%22%3EAs%20I%20tried%20the%20hellowindow%20application%20in%20Qt%205.1%2C%20I%20got%20error%20log%20as%20follow.%20Do%20you%20have%20any%20hints%3F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CP%3EQIconvCodec%3A%3AconvertFromUnicode%3A%20using%20Latin-1%20for%20conversion%2C%20iconv_open%20failed%3C%2FP%3E%3CP%3EQIconvCodec%3A%3AconvertToUnicode%3A%20using%20Latin-1%20for%20conversion%2C%20iconv_open%20failed%3C%2FP%3E%3CP%3EQEglFSImx6Hooks%20will%20set%20environment%20variable%20FB_MULTI_BUFFER%3D2%20to%20enable%20double%20buffering%20and%20vsync.%3C%2FP%3E%3CP%3EIf%20this%20is%20not%20desired%2C%20you%20can%20override%20this%20via%3A%20export%20QT_EGLFS_IMX6_NO_FB_MULTI_BUFFER%3D1%3C%2FP%3E%3CP%3EEGLFS%3A%20Unable%20to%20query%20physical%20screen%20size%2C%20defaulting%20to%20100%20dpi.%3C%2FP%3E%3CP%3EEGLFS%3A%20To%20override%2C%20set%20QT_QPA_EGLFS_PHYSICAL_WIDTH%20and%20QT_QPA_EGLFS_PHYSICAL_HEIGHT%20(in%20millimeters).%3C%2FP%3E%3CP%3EEGLFS%3A%20OpenGL%20windows%20cannot%20be%20mixed%20with%20others.%3C%2FP%3E%3CP%3EAborted%3C%2FP%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111370%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111370%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EFirst%3A%20I'm%20a%20very%20beginner%20in%20developing%20software%20for%20Linux%20Embedded.%20So%20may%20be%20my%20questions%3C%2FP%3E%3CP%3Eare%20very%20basic.%20I'm%20sorry%20for%20that.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20need%20to%20cross-compile%20a%20QT%205%20program%20from%20a%20PC%20based%20Ubuntu%20system%20to%20a%20i.MX6%20board.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20already%20built%20the%20O.S.%20for%20the%20board%20following%20the%20instructions%20of%20the%20page%3C%2FP%3E%3CP%3E%3CSPAN%3E%22%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fgithub.com%2FFreescale%2Ffsl-community-bsp-platform%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fgithub.com%2FFreescale%2Ffsl-community-bsp-platform%3C%2FA%3E%3CSPAN%3E%22.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ENow%20I'm%20trying%20to%20set%20up%20QT%20following%20the%3C%2FP%3E%3CP%3E%3CA%20_jive_internal%3D%22true%22%20data-containerid%3D%222004%22%20data-containertype%3D%2214%22%20data-objectid%3D%2294066%22%20data-objecttype%3D%22102%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fdocs%2FDOC-94066%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fcommunity.freescale.com%2Fdocs%2FDOC-94066%3C%2FA%3E%3C%2FP%3E%3CP%3Edocument%2C%20i.e.%20this%20page.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20did%20step%201%2C%202%2C%203%20and%204.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAt%20step%205%20gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%20is%20referenced.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWhere%20can%20I%20find%20it%3F%3C%2FP%3E%3CP%3EI%20looked%20for%20it%20on%20h%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22http%3A%2F%2Fwww.linaro.org%2F%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ettp%3A%2F%2Fwww.linaro.org%2F%3C%2FA%3E%20site%20but%20I%20didn't%20find%20it.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111369%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111369%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20would%20like%20to%20cross%20compile%20tool%20chain%20and%20prebuilt%20rootfs%20based%20on%20ltib%20to%20cross%20compile%20Qt5.x%20for%20IMX6%20Sabre%20AI%20board.%20Please%20let%20me%20know%20where%20can%20I%20download%20the%20same%20so%20that%20I%20can%20use%20the%20same%20cross%20compiler%20tool%20chain%20and%20rootfs%20used%20in%20this%20thread.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%2C%3C%2FP%3E%3CP%3ERamakanth%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111368%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111368%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EThanks%20Juha%2C%3C%2FP%3E%3CP%3EIt%20seems%20with%20latest%20version%20of%20%3CSPAN%20style%3D%22color%3A%20%23000000%3B%20font-family%3A%20Arial%2C%20FreeSans%2C%20Helvetica%2C%20sans-serif%3B%22%3Eqtdeclarative%3C%2FSPAN%3E%20this%20issue%20is%20fixed%20%3CIMG%20id%3D%22smileyhappy%22%20class%3D%22emoticon%20emoticon-smileyhappy%22%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fi%2Fsmilies%2F16x16_smiley-happy.png%22%20alt%3D%22Smiley%20Happy%22%20title%3D%22Smiley%20Happy%22%20%2F%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%20again%20%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111367%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111367%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EThat's%20a%20real%20bug%20in%20Qt%2C%20see%20workaround%20in%3A%20%3CA%20href%3D%22https%3A%2F%2Fbugreports.qt-project.org%2Fbrowse%2FQTBUG-34065%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fbugreports.qt-project.org%2Fbrowse%2FQTBUG-34065%3C%2FA%3E%3C%2FP%3E%3CP%3E(I%20would%20guess%20you%20are%20actually%20compiling%20post%205.1%20version%2C%205.1.1%20should%20compile%20just%20fine.%20If%20you%20cloned%20the%20qt5%20sources%20remember%20to%20checkout%20the%20appropriate%20git%20tag%20to%20get%205.1.1)%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111366%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111366%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHello%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20have%20following%20problem%20during%20build%20of%20latest%20Qt5.1%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm_p.h%3A%20In%20member%20function%20'void%20QQmlJS%3A%3AMASM%3A%3AAssembler%3A%3AstoreUInt32(JSC%3A%3AAbstractMacroAssembler%26lt%3B%3Aarmassembler%26gt%3B%3A%3ARegisterID%2C%20QQmlJS%3A%3AMASM%3A%3AAssembler%3A%3APointer)'%3A%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CP%3E%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm_p.h%3A1212%3A63%3A%20error%3A%20'convertUInt32ToDouble'%20was%20not%20declared%20in%20this%20scope%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm_p.h%3A%20In%20member%20function%20'void%20QQmlJS%3A%3AMASM%3A%3AInstructionSelection%3A%3AconvertUIntToDouble(QQmlJS%3A%3AV4IR%3A%3ATemp*%2C%20QQmlJS%3A%3AV4IR%3A%3ATemp*)'%3A%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm_p.h%3A1491%3A18%3A%20error%3A%20'class%20QQmlJS%3A%3AMASM%3A%3AAssembler'%20has%20no%20member%20named%20'convertUInt32ToDouble'%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm_p.h%3A1493%3A18%3A%20error%3A%20'class%20QQmlJS%3A%3AMASM%3A%3AAssembler'%20has%20no%20member%20named%20'convertUInt32ToDouble'%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm.cpp%3A%20In%20member%20function%20'virtual%20void%20QQmlJS%3A%3AMASM%3A%3AInstructionSelection%3A%3AvisitRet(QQmlJS%3A%3AV4IR%3A%3ARet*)'%3A%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm.cpp%3A1978%3A22%3A%20error%3A%20'class%20QQmlJS%3A%3AMASM%3A%3AAssembler'%20has%20no%20member%20named%20'convertUInt32ToDouble'%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm.cpp%3A%20In%20member%20function%20'JSC%3A%3AAbstractMacroAssembler%26lt%3B%3Aarmassembler%26gt%3B%3A%3AJump%20QQmlJS%3A%3AMASM%3A%3AInstructionSelection%3A%3AgenTryDoubleConversion(QQmlJS%3A%3AV4IR%3A%3AExpr*%2C%20JSC%3A%3AMacroAssemblerARM%3A%3AFPRegisterID)'%3A%3C%2FP%3E%3CP%3Ecompiler%2Fqv4isel_masm.cpp%3A2172%3A14%3A%20error%3A%20'class%20QQmlJS%3A%3AMASM%3A%3AAssembler'%20has%20no%20member%20named%20'convertUInt32ToDouble'%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSTRONG%3EQt5%20git%20version%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3Ecommit%20cb2d850b479fed9fed3c4a9fea698f924be942ef%3C%2FP%3E%3CP%3E%3CSPAN%3EAuthor%3A%20Qt%20Submodule%20Update%20Bot%20%26lt%3B%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-email-small%22%20href%3D%22mailto%3Aqt_submodule_update_bot%40ovi.com%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Eqt_submodule_update_bot%40ovi.com%3C%2FA%3E%3CSPAN%3E%26gt%3B%3C%2FSPAN%3E%3C%2FP%3E%3CP%3EDate%3A%26nbsp%3B%26nbsp%3B%20Tue%20Oct%2015%2022%3A00%3A06%202013%20%2B0300%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSTRONG%3ELTIB%204.%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EKindly%20let%20me%20know%20if%20you%20have%20solution%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%20%26amp%3B%20Regards%3C%2FP%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111365%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111365%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%20My%20QT4.8%20had%20been%20built%20success%2Cbut%20when%20I%20test%20the%20example%20in%20my%20target%20board%2Cit%20shows%20error%3A%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%20root%40freescale%20%2Fopt%2Fqt4.8-arm-elink%2Fexamples%2Fopengl%2Fhellogl_es2%24%20.%2Fhellogl_es2%20-platform%20eglfs%3C%2FP%3E%3CP%3E.%2Fhellogl_es2%3A%20error%20while%20loading%20shared%20libraries%3A%20libQtOpenGL.so.4%3A%20cannot%20open%20shared%20object%20file%3A%20No%20such%20file%20or%20directory%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%20%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%20what%20can%20I%20do%20to%20solve%20it%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111364%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111364%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHello%2C%3C%2FP%3E%3CP%3EBuilding%20seems%20to%20work%20fine%20for%20me%20but%20when%20I%20try%20to%20start%20one%20of%20the%20example%20project%20I%20get%20this%20error%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eroot%40freescale%20%2Fopt%2Fqt5%2Fexamples%2Fopengl%2Fhellowindow%24%20.%2Fhellowindow%20-platform%20eglfs%3C%2FP%3E%3CP%3EQIconvCodec%3A%3AconvertFromUnicode%3A%20using%20Latin-1%20for%20conversion%2C%20iconv_open%20failed%3C%2FP%3E%3CP%3EQIconvCodec%3A%3AconvertToUnicode%3A%20using%20Latin-1%20for%20conversion%2C%20iconv_open%20failed%3C%2FP%3E%3CP%3Eidr_remove%20called%20for%20id%3D2126092104%20which%20is%20not%20allocated.%3C%2FP%3E%3CP%3E%5B%26lt%3B8004f72c%26gt%3B%5D%20(unwind_backtrace%2B0x0%2F0x138)%20from%20%5B%26lt%3B8024d930%26gt%3B%5D%20(idr_remove%2B0x1f8%2F0x208)%3C%2FP%3E%3CP%3E%5B%26lt%3B8024d930%26gt%3B%5D%20(idr_remove%2B0x1f8%2F0x208)%20from%20%5B%26lt%3B802bb51c%26gt%3B%5D%20(drm_ctxbitmap_free%2B0x24%2F0x30)%3C%2FP%3E%3CP%3E%5B%26lt%3B802bb51c%26gt%3B%5D%20(drm_ctxbitmap_free%2B0x24%2F0x30)%20from%20%5B%26lt%3B802bba28%26gt%3B%5D%20(drm_rmctx%2B0x5c%2F0x10c)%3C%2FP%3E%3CP%3E%5B%26lt%3B802bba28%26gt%3B%5D%20(drm_rmctx%2B0x5c%2F0x10c)%20from%20%5B%26lt%3B802bc064%26gt%3B%5D%20(drm_ioctl%2B0x2d0%2F0x3b4)%3C%2FP%3E%3CP%3E%5B%26lt%3B802bc064%26gt%3B%5D%20(drm_ioctl%2B0x2d0%2F0x3b4)%20from%20%5B%26lt%3B8010b344%26gt%3B%5D%20(do_vfs_ioctl%2B0x80%2F0x558)%3C%2FP%3E%3CP%3E%5B%26lt%3B8010b344%26gt%3B%5D%20(do_vfs_ioctl%2B0x80%2F0x558)%20from%20%5B%26lt%3B8010b854%26gt%3B%5D%20(sys_ioctl%2B0x38%2F0x5c)%3C%2FP%3E%3CP%3E%5B%26lt%3B8010b854%26gt%3B%5D%20(sys_ioctl%2B0x38%2F0x5c)%20from%20%5B%26lt%3B80048600%26gt%3B%5D%20(ret_fast_syscall%2B0x0%2F0x30)%3C%2FP%3E%3CP%3ESegmentation%20fault%3C%2FP%3E%3CP%3Eroot%40freescale%20%2Fopt%2Fqt5%2Fexamples%2Fopengl%2Fhellowindow%24%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAny%20clue%20about%20what%20this%20can%20be%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111363%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111363%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%20all.%3C%2FP%3E%3CP%3EWhen%20i%20test%20qt5%20example%20on%20target%20board%2C%20(.%2Fhellogl_es2)%20I%20have%20below%20error.%3C%2FP%3E%3CP%3E%22This%20application%20failed%20to%20start%20because%20it%20could%20not%20find%20or%20load%20the%20Qt%20platform%20plugin%20%22eglfs%22.%22%3C%2FP%3E%3CP%3EPlease%20share%20any%20tip%20about%20this%20eglfs%20error.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ethank%20you.%3C%2FP%3E%3CP%3Ejessie.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111362%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111362%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Michael%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EIf%20you're%20running%20under%20X%2C%20you%20really%20want%20X%20to%20be%20accelerated%2C%20not%20Qt%2C%20and%20you%20should%20probably%20just%20use%20%3CTT%3Eapt-get%3C%2FTT%3E%20to%20install%20it.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111361%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111361%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Michael%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eeglvivante.h%20is%20included%20by%20eglplatform.h%2C%20which%20is%20included%20by%20egl.h.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EDo%20you%20have%20the%20configuration%20patches%3A%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20%3CA%20href%3D%22https%3A%2F%2Fgithub.com%2FFreescale%2Fmeta-fsl-arm%2Fcommit%2Fedcd4a6659c281458423ed39586607d69b4bed2a%22%20title%3D%22https%3A%2F%2Fgithub.com%2FFreescale%2Fmeta-fsl-arm%2Fcommit%2Fedcd4a6659c281458423ed39586607d69b4bed2a%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Eqt4%3A%20Enable%20OpenGL%20ES2%20support%20for%20i.MX6%20%C2%B7%20edcd4a6%20%C2%B7%20Freescale%2Fmeta-fsl-arm%20%C2%B7%20GitHub%3C%2FA%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111360%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111360%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EEric%2C%20still%20question%3A%20%3C%2FP%3E%3CP%3EI%20have%20a%20SABRElite%20board%2C%20which%20runs%20freescale%20Ubuntu%20image%20with%20X-window%20desktop.%3C%2FP%3E%3CP%3ENow%20I%20want%20to%20run%20a%20QT%20application%20on%20X-window%20of%20my%20devboard.%3C%2FP%3E%3CP%3EThis%20manual%20(Building%20QT%20for%20i.MX6)%20Is%20suitable%20for%20my%20task%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks!%3C%2FP%3E%3CP%3ERegards%2C%20Michael%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111359%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111359%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Eric!%20%3C%2FP%3E%3CP%3EThanks%20for%20your%20answer.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EYes%2C%20I%20have%20these%20declarations%20in%26nbsp%3B%20EGL%2Feglvivante.h%2C%20but%20in%20my%20qt-4.8.4%2Fsrc%2Fplugins%2Fplatforms%2Feglfs%2Fqeglfsscreen.cpp%20(after%20EGL%20support%20patch)%20I%20have%20no%20link%20to%20EGL%2Feglvivante.h%3C%2FP%3E%3CP%3EWhere%20I%20need%20to%20add%20the%20reference%20to%20EGL%2Feglvivante.h%2C%20in%20qeglfsscreen.cpp%2C%20in%20qeglfsscreen.h%20or%20in%20eglfs.pro%3F%3CBR%20%2F%3EI%20added%20everywhere%2C%20but%20the%20effect%20isn't%20present%2C%20there%20is%20the%20same%20compilation%20error.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%26gt%3B%26gt%3B%20Did%20you%20include%20gpu-viv-bin-mx6q%20in%20your%20LTIB%20configuration%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20don't%20use%20a%20LTIB%2C%20I%20use%20a%20ready%20freescale%20Ubuntu%20rootfs%20image%20%3CEM%3EL3.0.35_4.0.0_UBUNTU_RFS%3C%2FEM%3E%3CSPAN%3E%20from%20%3C%2FSPAN%3E%3CA%20class%3D%22jive-link-wiki-small%22%20data-containerid%3D%222004%22%20data-containertype%3D%2214%22%20data-objectid%3D%2294809%22%20data-objecttype%3D%22102%22%20href%3D%22https%3A%2F%2Fcommunity.freescale.com%2Fdocs%2FDOC-94809%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fcommunity.freescale.com%2Fdocs%2FDOC-94809%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EHow%20to%20solve%20this%20problem%3F%3C%2FP%3E%3CP%3EThanks%20again!%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%20Michael%20%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111358%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111358%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Michael%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThese%20declarations%20should%20be%20in%20%3CTT%3EEGL%2Feglvivante.h%3C%2FTT%3E%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CPRE%3E~%2Fltib4-nox%2Frootfs%2Fusr%2Finclude%24%20grep%20-r%20fbGetDisplayByIndex%20*%0AEGL%2Feglvivante.h%3AfbGetDisplayByIndex(%0A%3C%2FPRE%3E%3CP%3E%3C%2FP%3E%3CP%3EDid%20you%20include%20%3CTT%3Egpu-viv-bin-mx6q%3C%2FTT%3E%20in%20your%20LTIB%20configuration%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111357%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111357%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20all!%3C%2FP%3E%3CP%3EI%20followed%20the%20instructions%20to%20build%20QT4.8%20for%20my%20target%2C%20Boundary's%20SABRElite%20board.%20Unexpectedly%2C%20in%20%3CSTRONG%3Estep%209%20(Now%20need%20to%20build%20%3CEM%3Eeglfs%3C%2FEM%3E%20plugin)%3C%2FSTRONG%3E%2C%20I%20got%20the%20compiling%20error%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CEM%3Eqeglfsscreen.cpp%3A%20In%20constructor%20'QEglFSScreen%3A%3AQEglFSScreen(EGLNativeDisplayType)'%3A%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eqeglfsscreen.cpp%3A109%3A43%3A%20error%3A%20'fbGetDisplayByIndex'%20was%20not%20declared%20in%20this%20scope%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eqeglfsscreen.cpp%3A110%3A57%3A%20error%3A%20'fbGetDisplayGeometry'%20was%20not%20declared%20in%20this%20scope%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eqeglfsscreen.cpp%3A%20In%20member%20function%20'void%20QEglFSScreen%3A%3AcreateAndSetPlatformContext()'%3A%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Eqeglfsscreen.cpp%3A181%3A95%3A%20error%3A%20'fbCreateWindow'%20was%20not%20declared%20in%20this%20scope%3C%2FEM%3E%3CBR%20%2F%3E%3CEM%3Emake%3A%20***%20%5B.obj%2Frelease-shared%2Fqeglfsscreen.o%5D%20Error%201%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3E%3CBR%20%2F%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%20Any%20help%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%20Michael%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111356%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111356%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EYeah%2C%20I%20am%20also%20thinking%20to%20build%20it%20using%20QT5%20now%2C%20Anyway%20thanks%20for%20your%20replies%20%3CIMG%20id%3D%22smileyhappy%22%20class%3D%22emoticon%20emoticon-smileyhappy%22%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fi%2Fsmilies%2F16x16_smiley-happy.png%22%20alt%3D%22Smiley%20Happy%22%20title%3D%22Smiley%20Happy%22%20%2F%3E%3C%2FP%3E%3CP%3Echeers%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3ESarjoon%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111355%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111355%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3ESorry%2C%20no%2C%20hopefully%20there%20will%20be%20an%20update%20with%20build%20in%20QT5%20support...%3C%2FP%3E%3CP%3EI%20also%20tried%20to%20work%20out%20things%20with%20Qt4%2C%20but%20not%20much%20success%20there%3C%2FP%3E%3CP%3Eeither...%20%3D%20(%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ewith%20Regards%2C%3C%2FP%3E%3CP%3EZoltan%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111354%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111354%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CA%20class%3D%22jx-jive-macro-user%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fpeople%2Frossdehmoobed%22%20target%3D%22_blank%22%3Erossdehmoobed%3C%2FA%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111353%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111353%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EOh..%20you%20have%20any%20idea%20regarding%20that.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWith%20Regards%2C%3C%2FP%3E%3CP%3ESarjoon%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111352%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111352%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EAnyway%20thanks%20for%20the%20replay%20Zoltan%20%3CIMG%20id%3D%22smileyhappy%22%20class%3D%22emoticon%20emoticon-smileyhappy%22%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fi%2Fsmilies%2F16x16_smiley-happy.png%22%20alt%3D%22Smiley%20Happy%22%20title%3D%22Smiley%20Happy%22%20%2F%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111351%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111351%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3ENo%2C%20I%20don't%20have%20those%20solved%20yet%20unfortunately...%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ewith%20Regards%2C%3C%2FP%3E%3CP%3EZoltan%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111350%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111350%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EU%20mean%20you%20also%20had%20that%20input%20issue..%20The%20issue%20I%20am%20facing%20is%20once%20after%20I%20run%20the%20demo%20application%20.%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%22%3E%2Fhellowindow%20-platform%20eglfs..%20i%20cant%20give%20any%20input(I%20want%20to%20use%20touch).%20Nothing%20is%20working%20regarding%20touch..%20I%20exported%20all%20the%20necessary%20Tslib%20variables%20and%20all.%20%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%22%3EDid%20the%20library%20files%20which%20u%20found%20is%20anything%20to%20do%20with%20the%20touch%20issue..%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%22%3EYou%20also%20mentioned%20%22%3CSPAN%20style%3D%22color%3A%20%233d3d3d%3B%20font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%22%3Eunfortunately%20they%20didn't%20solve%20all%20the%20problems%3C%2FSPAN%3E%22%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111349%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111349%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20I%20found%20some%20libs%2C%3C%2FP%3E%3CP%3E%3CA%20href%3D%22https%3A%2F%2Fgithub.com%2FzOrg1331%2Ffsl-gpu-viv-mx6q%2Ftree%2Fmaster%2Fusr%2Flib%22%20target%3D%22test_blank%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%3Ehttps%3A%2F%2Fgithub.com%2FzOrg1331%2Ffsl-gpu-viv-mx6q%2Ftree%2Fmaster%2Fusr%2Flib%3C%2FA%3E%2C%20but%3C%2FP%3E%3CP%3Ethose%20are%20old%2C%3C%2FP%3E%3CP%3Eand%20unfortunately%20they%20didn't%20solve%20all%20the%20problems.%20Incompatibility%3C%2FP%3E%3CP%3Eissues%20remain.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ewith%20Regards%2C%3C%2FP%3E%3CP%3EZoltan%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111348%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111348%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20also%20have%20the%20same%20problem%2C%20Did%20U%20find%20any%20solution%20ragarding%20this%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111347%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111347%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3Eedit%20the%20build%2Fconf%2Flocal.conf%20%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111346%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111346%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EThanks.%3C%2FP%3E%3CP%3EYes%2C%20I%20am%20running%20Ubuntu.%20I%20followed%20the%20article%20from%20the%20%22Yocto%20With%20Boundary%20Device's%20Nitrogen6x%3A%205%20steps%20only!%22%20.%20I%20did%20not%20install%20all%20the%20necessary%20software%20on%20my%20system.%20I%20will%20do%20the%20installation%20as%20you%20point%20to%20me.%20Thanks%20again.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111345%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111345%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20squirem%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20got%20run%20bitbake%20fsl-image-gui%2C%20but%20I%20found%20the%20MACHINE%3Dimx6qsabresd%20is%20not%20I%20wanted.%20My%20board%20is%20Nitrogen6x%20board%20from%20Boundary.%20How%20to%20change%20it%20to%20MACHINE%3Dnitrogen6x%3F%20Could%20you%20please%20help%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EBy%20the%20way%2C%20I%20need%20Qt4.8.4%20libraries%20on%20the%20image.%20Does%20the%20building%20image%20has%20been%20added%20Qt4.8.4%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%2C%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111344%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111344%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EAre%20you%20sure%20you%20followed%20the%20steps%20outlined%20here%3A%20%3CA%20href%3D%22https%3A%2F%2Fgithub.com%2FFreescale%2Ffsl-community-bsp-platform%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fgithub.com%2FFreescale%2Ffsl-community-bsp-platform%3C%2FA%3E%3C%2FP%3E%3CP%3EAlso%2C%20are%20you%20sure%20you%20have%20all%20the%20necessary%20software%20installed%20on%20your%20system.%20See%20the%20Yocto%20Project%20Quick%20Start%20Guide%20and%20look%20under%20packages%3A%20%3CA%20href%3D%22https%3A%2F%2Fwww.yoctoproject.org%2Fdocs%2Fcurrent%2Fyocto-project-qs%2Fyocto-project-qs.html%22%20title%3D%22https%3A%2F%2Fwww.yoctoproject.org%2Fdocs%2Fcurrent%2Fyocto-project-qs%2Fyocto-project-qs.html%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fwww.yoctoproject.org%2Fdocs%2Fcurrent%2Fyocto-project-qs%2Fyocto-project-qs.html%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI'm%20guessing%20you're%20running%20Ubuntu%2C%20which%20means%20this%20command%20would%20install%20the%20software%20you%20need%3A%20%3C%2FP%3E%3CBLOCKQUOTE%3E%0A%3CP%3Esudo%20apt-get%20install%20gawk%20wget%20git-core%20diffstat%20unzip%20texinfo%20%5C%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%20build-essential%20chrpath%20libsdl1.2-dev%20xterm%3C%2FP%3E%0A%3C%2FBLOCKQUOTE%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111343%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111343%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20followed%20the%20instructions%20and%20when%20I%20ran%20%22bitbake%20core-image-minimal%22.%20It%20pop%20up%20following%20error.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3EPseudo%20is%20not%20present%20but%20is%20required%2C%20building%20this%20first%20before%20the%20main%20build%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3EERROR%3A%20OE-core's%20config%20sanity%20checker%20detected%20a%20potential%20misconfiguration.%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3E%20Either%20fix%20the%20cause%20of%20this%20error%20or%20at%20your%20own%20risk%20disable%20the%20checker%20(see%20sanity.conf).%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3E%20Following%20is%20the%20list%20of%20potential%20problems%20%2F%20advisories%3A%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3E%20Please%20install%20the%20following%20missing%20utilities%3A%20gawk%2Cchrpath%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThen%20I%20ran%20%22apt-get%20install%20gawk%26nbsp%3B%20chrpath%22.%20It%20pop%20up%20info%20as%20below.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3EThe%20following%20packages%20were%20automatically%20installed%20and%20are%20no%20longer%20required%3A%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3E%20libp11-kit-dev%20libgpg-error-dev%20comerr-dev%20libqt3-headers%20libgnutls-openssl27%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3E%20libkrb5-dev%20liblcms1-dev%20libgnutlsxx27%20libgssrpc4%20libxt-dev%20libxmu-dev%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3E%20libtasn1-3-dev%20libcups2-dev%20libqt3-compat-headers%20qt3-dev-tools%20libgcrypt11-dev%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3E%20libkadm5clnt-mit8%20libaudio-dev%20libkadm5srv-mit8%20libxmu-headers%20libkdb5-6%20%3C%2FSTRONG%3E%3C%2FP%3E%3CP%20style%3D%22margin-bottom%3A%200in%3B%22%3E%3CSTRONG%3E%20libgnutls-dev%20krb5-multidev%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EDo%20I%20have%20to%20remove%20them%20using%20%22apt-get%20autoremove%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20.......%22%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111342%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111342%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Zoltan%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ei%20am%20having%20the%20same%20issue%2C%20also%20with%20another%20MPUs%20from%20several%20vendors.%20I%20have%20not%20solved%20it%20yet%2C%20but%20it%20looks%20like%20its%20a%20problem%20related%20with%20the%20rootfs%2C%20specifically%20with%20simlinks%20and%20lib%20paths.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThere%20is%20a%20nice%20guide%20for%20a%20raspberry-pi%20device%20which%20i%20tried%2C%20and%20worked%20nice%2C%20but%20only%20with%20the%20rootfs%20image%20they%20specified%20(raspbian%20wheezy%20image)%3A%20%3CA%20href%3D%22http%3A%2F%2Fqt-project.org%2Fwiki%2FRaspberryPi_Beginners_guide%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3Ehttp%3A%2F%2Fqt-project.org%2Fwiki%2FRaspberryPi_Beginners_guide%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWhen%20i%20tried%20to%20use%20my%20own%20rootfs%2C%20i%20have%20the%20problem%20you%20have%20had.%20Looks%20like%20the%20fix%20they%20propose%20could%20be%20the%20solution.%20That%20is%20to%20run%20a%20script%20to%20fix%20symlinks%20and%20libpaths%2C%20included%20in%20the%20croos-compiled-tools%20they%20provide.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20tried%20that%20but%20with%20no%20succes.%20Eventhough%2C%20everywhere%20in%20the%20web%20looks%20like%20that%20old%20configures%20files%2C%20can%20be%20a%20really%20headache%2C%20so%20it's%20really%20important%20to%20clean%20the%20files%20generated%20in%20the%20configure.%20Here%20it's%20very%20important%20to%20say%2C%20that%20the%20only%20actual%20way%20to%20do%20that%2C%20is%20cleaning%20the%20repository%20with%3A%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%26nbsp%3B%26nbsp%3B%26nbsp%3B%20git%20submodule%20foreach%20--recursive%20%22git%20clean%20-dfx%22%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Ebecause%20%22make%20confclean%22%20doesn't%20really%20work%20in%20Qt5%20and%20%22make%20clean%22%20only%20cleans%20ol%20the%20.o%20and%20others%20files%2C%20but%20no%20all%20the%20configurations%20generated%20with%20.%2Fconfigure.%20So%2C%20to%20download%20a%20tar.gz%20and%20use%20this%20a%20source%20code%2C%20should%20not%20be%20an%20option%20for%20Qt5.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWould%20really%20love%20to%20solve%20this%20problem%20with%20the%20imx6%2C%20using%20my%20own%20rootfs%20generated%20with%20buildroot%20(in%20my%20case).%20Any%20help%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERegards%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ESantiago%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111341%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111341%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3ENo%20%40%20-no-gcc-sysroot%20vs.%20-sysroot%3C%2FP%3E%3CP%3EThis%20was%20made%20for%20the%20freescale-linaro%20toolchain%20from%20ltib%2C%20because%20it%20doesn't%20allow%20you%20to%20set%20-sysroot%20as%20all%20the%20basic%20posix%20building-blooks%20were%20located%20within%20the%20toolchain%20and%20setting%20-sysroot%20in%20for%20gcc%20ruins%20it.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ESo%20the%20combination%26nbsp%3B%20of%20'-sysroot'%20and%20'-no-gcc-sysroot'%20results%20in%20Qt5%20to%20do%20some%20magic%20in%20the%20background%20(e.g.%20PKG%20variables)%20but%20doesn't%20result%20in%20adding%20'--sysroot'%20to%20the%20gnu%20flags%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111340%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111340%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%20Joerg%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThanks%20for%20your%20replying%20my%20question.%20Currently%20I%20need%20to%20build%20QT4.8%20on%20my%20image%20in%20LTIB.%20We%20shall%20late%20on%20consider%20the%20Yocto%20image%20since%20it%20has%20QT%20built%20in.%26nbsp%3B%20%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20googled%20and%20looked%20at%20the%20relate%20posts%20that%20mentioned%20needing%20to%20install%20libjpeg-dev.%20I%20wonder%20if%20any%20one%20in%20this%20thread%20knows%20how%20to%20fix%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CBR%20%2F%3E%20%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111339%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111339%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHallo%20Bill%2C%3C%2FP%3E%3CP%3Eno%20need%20to%20do%20that%20for%204.8%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EHave%20a%20look%20at%20this%3C%2FP%3E%3CP%3E%3CA%20_jive_internal%3D%22true%22%20href%3D%22https%3A%2F%2Fcommunity.nxp.com%2Fmessage%2F339555%23339555%22%20title%3D%22https%3A%2F%2Fcommunity.freescale.com%2Fmessage%2F339555%23339555%22%20target%3D%22_blank%22%3Ehttps%3A%2F%2Fcommunity.freescale.com%2Fmessage%2F339555%23339555%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EJoerg%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111338%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111338%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20followed%20the%20instructions%20to%20build%20QT4.8%20for%20my%20target%2C%20Boundary's%20Nitrogen6x%20board.%20Unfortunately%2C%20in%20step%208%2C%20when%20it%20was%20building%2C%20I%20got%20the%20compiling%20error%20%22fatal%20error%3A%20jpeglib.h%3A%20No%20such%20file%20or%20directory%22.%20I%20wonder%20if%20you%20guys%20have%20any%20comment%20about%20the%20error%20listing%20below.%3C%2FP%3E%3CP%3Ecd%20%22%2Fhome%2Fbyang%2Fqt%2F.%2Fsrc%2Fplugins%2Fimageformats%2Fjpeg%22%3CBR%20%2F%3Emake%20Makefile%3CBR%20%2F%3Emake%5B4%5D%3A%20Entering%20directory%20%60%2Fhome%2Fbyang%2Fqt%2Fsrc%2Fplugins%2Fimageformats%2Fjpeg'%3CBR%20%2F%3Emake%5B4%5D%3A%20%60Makefile'%20is%20up%20to%20date.%3CBR%20%2F%3Emake%5B4%5D%3A%20Leaving%20directory%20%60%2Fhome%2Fbyang%2Fqt%2Fsrc%2Fplugins%2Fimageformats%2Fjpeg'%3CBR%20%2F%3Emake%5B3%5D%3A%20Leaving%20directory%20%60%2Fhome%2Fbyang%2Fqt%2Fsrc%2Fplugins%2Fimageformats%2Fjpeg'%3CBR%20%2F%3Emake%5B3%5D%3A%20Entering%20directory%20%60%2Fhome%2Fbyang%2Fqt%2Fsrc%2Fplugins%2Fimageformats%2Fjpeg'%3CBR%20%2F%3Earm-fsl-linux-gnueabi-g%2B%2B%20-c%20-pipe%20-O2%20-O2%20-march%3Darmv7-a%20-mfpu%3Dneon%20-DLINUX%3D1%20-DEGL_API_FB%3D1%20-fvisibility%3Dhidden%20-fvisibility-inlines-hidden%20-D_REENTRANT%20-Wall%20-W%20-fPIC%20-DQT_NO_DEBUG%20-DQT_PLUGIN%20-DQT_GUI_LIB%20-DQT_NETWORK_LIB%20-DQT_CORE_LIB%20-DQT_SHARED%20-I..%2F..%2F..%2F..%2Fmkspecs%2Fqws%2Flinux-imx6-g%2B%2B%20-I.%20-I..%2F..%2F..%2F..%2Finclude%2FQtCore%20-I..%2F..%2F..%2F..%2Finclude%2FQtNetwork%20-I..%2F..%2F..%2F..%2Finclude%2FQtGui%20-I..%2F..%2F..%2F..%2Finclude%20-I..%2F..%2F..%2Fgui%2Fimage%20-I.moc%2Frelease-shared%20-I%2Fhome%2Fbyang%2Fltib%2Frootfs%2Fusr%2Finclude%20-I%2Ftftpboot%2Frootfs%2Fusr%2Finclude%2Farm-linux-gnueabi%2F%20-o%20.obj%2Frelease-shared%2Fqjpeghandler.o%20..%2F..%2F..%2Fgui%2Fimage%2Fqjpeghandler.cpp%3CBR%20%2F%3E..%2F..%2F..%2Fgui%2Fimage%2Fqjpeghandler.cpp%3A71%3A21%3A%20fatal%20error%3A%20jpeglib.h%3A%20No%20such%20file%20or%20directory%3CBR%20%2F%3Ecompilation%20terminated.%3CBR%20%2F%3Emake%5B3%5D%3A%20***%20%5B.obj%2Frelease-shared%2Fqjpeghandler.o%5D%20Error%201%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111337%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111337%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20was%20recently%20trying%20to%20build%20QT5%20for%20iMX6%20board%20using%20the%20instructions%20above.%3C%2FP%3E%3CP%3Erootfs%3A%20%3CSPAN%20style%3D%22font-size%3A%208.0pt%3B%20font-family%3A%20'Arial'%2C'sans-serif'%3B%22%3E%3CA%20class%3D%22jive-link-external-small%22%20href%3D%22https%3A%2F%2Fwww.freescale.com%2Fwebapp%2FDownload%3FcolCode%3DL3.0.35_4.0.0_UBUNTU_RFS%26amp%3BappType%3Dlicense%26amp%3Blocation%3Dnull%26amp%3Bfpsp%3D1%26amp%3BWT_TYPE%3DBoard%2520Support%2520Packages%26amp%3BWT_VENDOR%3DFREESCALE%26amp%3BWT_FILE_FORMAT%3Dtgz%26amp%3BWT_ASSET%3DDownloads%26amp%3Bsr%3D60%26amp%3BParent_nodeId%3D1337694700967726419044%26amp%3BParent_p%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3EL3.0.35_4.0.0_UBUNTU_RFS%3C%2FA%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3Econfigure%3A%3C%2FP%3E%3CP%3E.%2Fconfigure%20-v%20-opensource%20-confirm-license%20-no-pch%20-no-xcb%20-no-opengl%20-opengl%20es2%20-make%20libs%20-device%20imx6%20-device-option%20CROSS_COMPILE%3D%2Fopt%2Fgcc-linaro-arm-linux-gnueabihf-4.8-2013.06_linux%2Fbin%2Farm-linux-gnueabihf-%20-sysroot%20%2Fhome%2Fmax%2FDev%2Frootfs%20-no-gcc-sysroot%20-prefix%20%2Fopt%2FQt5-imx6%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3Eunfortunately%20I%20have%20the%20following%20error%3A%3C%2FP%3E%3CP%3E%2Fopt%2Fgcc-linaro-arm-linux-gnueabihf-4.8-2013.06_linux%2Fbin%2F..%2Flib%2Fgcc%2Farm-linux-gnueabihf%2F4.8.2%2F..%2F..%2F..%2F..%2Farm-linux-gnueabihf%2Fbin%2Fld%3A%20error%3A%20opengles2%20uses%20VFP%20register%20arguments%2C%20opengles2.o%20does%20not%3C%2FP%3E%3CP%3E%2Fopt%2Fgcc-linaro-arm-linux-gnueabihf-4.8-2013.06_linux%2Fbin%2F..%2Flib%2Fgcc%2Farm-linux-gnueabihf%2F4.8.2%2F..%2F..%2F..%2F..%2Farm-linux-gnueabihf%2Fbin%2Fld%3A%20failed%20to%20merge%20target%20specific%20data%20of%20file%20opengles2.o%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%3E...%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20class%3D%22mce_paste_marker%22%3E%3C%2FP%3E%3CP%20class%3D%22mce_paste_marker%22%3E%2Fhome%2Fmax%2FDev%2Frootfs%2Fusr%2Flib%2FlibGAL.so%3A%20undefined%20reference%20to%20%60XMapRaised'%3C%2FP%3E%3CP%3E%2Fhome%2Fmax%2FDev%2Frootfs%2Fusr%2Flib%2FlibGAL.so%3A%20undefined%20reference%20to%20%60pthread_setspecific%40GLIBC_2.4'%3C%2FP%3E%3CP%3E%2Fhome%2Fmax%2FDev%2Frootfs%2Fusr%2Flib%2FlibGAL.so%3A%20undefined%20reference%20to%20%60_XReadPad'%3C%2FP%3E%3CP%3E%2Fhome%2Fmax%2FDev%2Frootfs%2Fusr%2Flib%2FlibGAL.so%3A%20undefined%20reference%20to%20%60dlopen%40GLIBC_2.4'%3C%2FP%3E%3CP%3E%2Fhome%2Fmax%2FDev%2Frootfs%2Fusr%2Flib%2FlibGAL.so%3A%20undefined%20reference%20to%20%60pthread_key_delete%40GLIBC_2.4'%3C%2FP%3E%3CP%3E%2Fhome%2Fmax%2FDev%2Frootfs%2Fusr%2Flib%2FlibGAL.so%3A%20undefined%20reference%20to%20%60XPending'%3C%2FP%3E%3CP%3Ecollect2%3A%20error%3A%20ld%20returned%201%20exit%20status%3C%2FP%3E%3CP%3Emake%3A%20***%20%5Bopengles2%5D%20Error%201%3C%2FP%3E%3CP%3EOpenGL%20ES%202.x%20disabled.%3C%2FP%3E%3CP%3EThe%20OpenGL%20ES%202.0%20functionality%20test%20failed!%3C%2FP%3E%3CP%3EYou%20might%20need%20to%20modify%20the%20include%20and%20library%20search%20paths%20by%20editing%3C%2FP%3E%3CP%3EQMAKE_INCDIR_OPENGL_ES2%2C%20QMAKE_LIBDIR_OPENGL_ES2%20and%20QMAKE_LIBS_OPENGL_ES2%20in%3C%2FP%3E%3CP%3E%2Fhome%2Fmax%2FDev%2Frepository%2Fqt5%2Fqtbase%2Fmkspecs%2Fdevices%2Flinux-imx6-g%2B%2B.%3C%2FP%3E%3CP%3E%3CBR%20%2F%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3EThen%20if%20I%20take%20out%20ES%2C%20I%20have%3A%20%22%3C%2FSPAN%3ECould%20not%20determine%20the%20target%20architecture!%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%22%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3CBR%20%2F%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3ECan%20somebody%20comment%20on%20this%3F%20Any%20help%3F%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3EDoes%20the%20attached%20patch%20suppose%20to%20fix%20that%3F%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3EThanks!%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3EMax%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111336%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111336%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHello%20Brad%2C%3C%2FP%3E%3CP%3EI%20will%20be%20the%20best%20someone%20who%20knows%20write%20a%20new%20Howto%20%22Setup%20QT%20Creator%22%20with%20Yocto%20based%20QT%2C%20rootfs%20and%20toolchain.%20%3CSPAN%20lang%3D%22en%22%3E%3CSPAN%20class%3D%22hps%22%3EBut%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3Eslowly%20I%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3Ebelieve%20that%20no%20one%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3Ereally%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3Eknows%20how%20to%20do%20that%20%3CLI-EMOJI%20id%3D%22lia_winking-face%22%20title%3D%22%3Awinking_face%3A%22%3E%3C%2FLI-EMOJI%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20lang%3D%22en%22%3E%3CSPAN%20class%3D%22hps%22%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3EJoerg%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111335%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111335%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EOK.%26nbsp%3B%20I%20used%20a%20link%20to%20~%2Fimx6%2Fltib%2Frootfs%20since%20I'm%20only%20doing%20NFS%20boot%20and%20I've%20already%20created%20a%20rootfs%20with%20LTIB.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ERunning%20configure%20generates%20several%20errors.%3C%2FP%3E%3CP%3EHowever%2C%20I%20am%20able%20to%20make%20and%20make%20install%20most%20of%20the%20files%20into%20%2Fopt%2Fqt4.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EBut%20the%20second%20bullet%20in%20Step%20%2312%20makes%20no%20sense.%3C%2FP%3E%3CP%3EFurthermore%2C%20there%20is%20no%20opt%2Fqt4%2Fexamples%20directory.%26nbsp%3B%20%3C%2FP%3E%3CP%3EHere%20is%20what%20is%20what%20is%20there%3A%3C%2FP%3E%3CP%3E%3CEM%3E%3CBR%20%2F%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3Eroot%40freescale%20%2F%24%20ls%20opt%2Fqt4%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3Ebin%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20include%26nbsp%3B%20lib%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%20plugins%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAny%20ideas%20of%20where%20I%20might%20be%20having%20problems.%26nbsp%3B%20I've%20followed%20the%20directions%20very%20carefully.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EBrad%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111334%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111334%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3Eyou%26nbsp%3B%20have%20to%20place%26nbsp%3B%20%22%2Fmedia%2FNameOfMountedRootFs%22%26nbsp%3B%20as%20ROOTFFS%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111333%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111333%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20am%20trying%20to%20build%20Qt4%20as%20per%20the%20instructions%20above.%3C%2FP%3E%3CP%3EIn%20Step%20%232%20is%20this%20command%3A%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20background-color%3A%20%23ffffff%3B%22%3E%24%20ln%20-s%20%24(ROOTFFS)%20rootfs%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EWhen%20I%20try%20to%20run%20it%2C%20it%20states%20that%20the%20variable%20%22ROOTFFS%3A%20command%20not%20found.%22%3C%2FP%3E%3CP%3EAny%20idea%20why%20this%20failed%3F%26nbsp%3B%20I%20tried%20ROOTFS%20and%20still%20had%20the%20same%20error.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EIs%20ROOTFFS%20the%20qt%20install%20directory%3F%26nbsp%3B%20Where%20is%20it%20defined%3F%26nbsp%3B%20It's%20not%20in%20my%20environment.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111332%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111332%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EIt's%20on%20the%20master-next%20branch%2C%20so%20it's%20not%20ready%20quite%20yet.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111331%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111331%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3Esure%20that%20Qt5%20is%20added%3F%26nbsp%3B%20Witch%20repo%20to%20check%20out%3F%20dylan%26nbsp%3B%20and%20what%20to%20build%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EJoerg%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111330%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111330%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EFollow%20the%20instructions%20that%20are%20in%20the%20documentation.%26nbsp%3B%20You%20can%20download%20the%20documentation%20package%20from%20freescale%20site.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111329%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111329%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20have%20downloaded%20the%20Image%20(L3.0.35_4.0.0_130424_images_MX6)%26nbsp%3B%20How%20to%20put%20it%20on%20SD%3F%20%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111328%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111328%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EI%20just%20checked%20what%20machines%20are%20supported%20in%20the%20BSP%20I%20linked%20to.%20It%20seems%20that%20your%20board%20nitrogen6x%20is%20supported%2C%20and%20there%20does%20appear%20to%20be%20a%20set%20of%20Qt4%20recipes%20for%20the%20demo%20image%20you%20are%20referring%20to%3A%20%3CA%20href%3D%22http%3A%2F%2Fimgur.com%2Fa%2FN9hL7%22%20title%3D%22http%3A%2F%2Fimgur.com%2Fa%2FN9hL7%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3E%20Photo%20Album%20-%20Imgur%20%3C%2FA%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111327%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111327%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3ESo%20I%20can%20use%20a%20Image%20build%20with%20yocto%3F%20like%20fsl-image-gui-nitrogen6x.sdcard%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111326%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111326%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHe%20is%20referring%20to%20the%20prebuilt%20images%20which%20can%20be%20found%20under%20the%20%22Operating%20System%20Software%20-%20Board%20Support%20Packages%22%20section%20of%20whatever%20chip%20you're%20using.%20In%20my%20case%2C%20for%20the%20SabreSD%20board%3A%20%3CA%20href%3D%22http%3A%2F%2Fwww.freescale.com%2Fwebapp%2Fsps%2Fsite%2Fprod_summary.jsp%3Fcode%3DRDIMX6SABREBRD%26amp%3Bfpsp%3D1%26amp%3Btab%3DDesign_Tools_Tab%22%20style%3D%22color%3A%20%23017bba%3B%20font-family%3A%20arial%2C%20sans-serif%3B%20font-size%3A%2012px%3B%20background-color%3A%20%23cccccc%3B%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3EL3.0.35_4.0.0_DEMO_IMAGE%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EYou%20are%20right%20about%20LTIB%20and%20Yocto.%20Freescale%20is%20moving%20towards%20Yocto%20and%20the%20LTIB%20platform%20can%20be%20buggy.%20Use%20the%20Freescale%20community%20BSP%20instead%3A%20%3CA%20href%3D%22https%3A%2F%2Fgithub.com%2FFreescale%2Ffsl-community-bsp-platform%22%20title%3D%22https%3A%2F%2Fgithub.com%2FFreescale%2Ffsl-community-bsp-platform%22%20rel%3D%22nofollow%20noopener%20noreferrer%22%20target%3D%22_blank%22%3EFreescale%2Ffsl-community-bsp-platform%20%C2%B7%20GitHub%3C%2FA%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EThe%20instructions%20are%20in%20the%20link.%20After%20compilation%2C%20an%20SD%20card%20image%20is%20generated%20that%20can%20be%20directly%20copied%20to%20an%20actual%20SD%20card%20and%20will%20run%20on%20whatever%20board%20you're%20using.%20There%20is%20already%20full%20Qt4%20support%20and%20Qt5%20support%20is%20only%20recently%20being%20added%20(added%20about%20a%20week%20ago).%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111325%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111325%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHi%2C%3C%2FP%3E%3CP%3Ewhat%20is%20the%20meaning%20of%20%22The%20build%20is%20verified%20on%20prebuilt%20rootfs(based%20on%20LTIB)%20which%20can%20be%20downloaded%20from%20freescale.com%22%26nbsp%3B%20I%20have%20to%20build%20it%20with%20ltib%20or%20can%20i%20download%20it%3F%26nbsp%3B%20When%20I%20can%20download%20it%2C%20please%20explain%20how%20to%20use%20it%20on%20host.%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%3CSPAN%20lang%3D%22en%22%3E%3CSPAN%20class%3D%22hps%22%3ETo%20use%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3ELTIB%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3Emakes%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3Elittle%20sense%3C%2FSPAN%3E%3CSPAN%3E%2C%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3Ebecause%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3EYocto%3C%2FSPAN%3E%20%3CSPAN%20class%3D%22hps%22%3Eis%20preferred.%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20lang%3D%22en%22%3E%3CSPAN%20class%3D%22hps%22%3EI%20try%20now%20to%20do%20LTIB%20for%20a%20couple%20of%20days%20without%20success.%20%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20lang%3D%22en%22%3E%3CSPAN%20class%3D%22hps%22%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20lang%3D%22en%22%3E%3CSPAN%20class%3D%22hps%22%3Eregards%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20lang%3D%22en%22%3E%3CSPAN%20class%3D%22hps%22%3EJoerg%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111324%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111324%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EHere's%20my%20configure%20script%3A%3C%2FP%3E%3CP%3E%3CEM%3E%3CSTRONG%3E%23!%2Fbin%2Fsh%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3E%3CSTRONG%3E.%2Fconfigure%20-v%20-opensource%20-confirm-license%20-no-pch%20-no-xcb%20-opengl%20es2%20%5C%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3E%3CSTRONG%3E%26nbsp%3B%20-make%20libs%20-device%20imx6%20%5C%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3E%3CSTRONG%3E%26nbsp%3B%20-make%20examples%20-make%20demos%20%5C%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3E%3CSTRONG%3E%26nbsp%3B%20-device-option%20CROSS_COMPILE%3D%2Fhome%2Fsquirem%2FDesktop%2Fpoky-dylan-9.0.0%2Fbuild%2Ftmp%2Fsysroots%2Fx86_64-linux%2Fusr%2Fbin%2Farmv7a-vfp-neon-poky-linux-gnueabi%2Farm-poky-linux-gnueabi-%20%5C%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3E%3CSTRONG%3E%26nbsp%3B%20-sysroot%20%2Fhome%2Fsquirem%2FDesktop%2Fpoky-dylan-9.0.0%2Fbuild%2Ftmp%2Fdeploy%2Fimages%2Fmountpoint%20%5C%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3CEM%3E%3CSTRONG%3E%26nbsp%3B%20-prefix%20%2Fopt%2Fqt5%3C%2FSTRONG%3E%3C%2FEM%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ENotice%20I%20removed%20the%20%3CSTRONG%3E-no-opengl%3C%2FSTRONG%3E%20and%3CSTRONG%3E%20-no-gcc-sysroot%3C%2FSTRONG%3E%20options.%20I%20think%20the%20%3CSTRONG%3E-no-opengl%3C%2FSTRONG%3E%20option%20conflicts%20with%20the%3CSTRONG%3E%20-opengl%20es2%3C%2FSTRONG%3E%20option%20and%20the%20%3CSTRONG%3E-no-gcc-sysroot%3C%2FSTRONG%3E%20option%20conflicts%20with%20the%3CSTRONG%3E%20-sysroot%20%3C%2FSTRONG%3E%3CDIR%3E%3CSTRONG%3E%3C%2FSTRONG%3E%20option.%20You%20may%20also%20notice%20I%20added%20the%20%3CSTRONG%3E-no-xcb%3C%2FSTRONG%3E%20option%20since%20xcb%20wasn't%20working%20for%20me.%3C%2FDIR%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EAs%20a%20side%20note%2C%20I%20think%20you%20can%20add%20more%20options%20to%20remove%20SQL%20support.%20Run%20%3CSTRONG%3E.%2Fconfigure%20-h%3C%2FSTRONG%3E%20to%20look%20at%20your%20options.%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111323%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111323%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20background-color%3A%20%23ffffff%3B%22%3EQuestion%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20background-color%3A%20%23ffffff%3B%22%3EI%20follow%20the%20instruction%20as%20above%20to%20build%20QT5%2C%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20background-color%3A%20%23ffffff%3B%22%3Ebut%20I%20found%20the%20configure%20command%20is%20incorrect%20to%20my%20environment.%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3CSPAN%20style%3D%22font-family%3A%20'Helvetica%20Neue'%2C%20Helvetica%2C%20Arial%2C%20'Lucida%20Grande'%2C%20sans-serif%3B%20background-color%3A%20%23ffffff%3B%22%3Eso%20I%20change%20the%20configure%20command%20as%20below%3A%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E.%2Fconfigure%20-v%20-opensource%20-confirm-license%20-system-sqlite%20-no-sse2%20-no-sse3%20-no-ssse3%20-no-sse4.1%20-no-sse4.2%20-no-avx%20-no-xcb%20-no-sql-mysql%20-no-sql-db2%20-no-sql-ibase%20-no-sql-oci%20-no-sql-odbc%20-no-sql-tds%20-no-sql-sqlite2%26nbsp%3B%20-no-pch%20-no-opengl%20-opengl%20es2%26nbsp%3B%20-wayland%20-make%20libs%20-device%20imx6%20-make%20examples%20-make%20demos%20-device-option%20CROSS_COMPILE%3D%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2Farm-fsl-linux-gnueabi-%20-sysroot%20%2Fmedia%2Fnew-version%2Fbuild%2FL3.0.35_4.0.0%2Fltib%2Frootfs%20-no-gcc-sysroot%20-prefix%20%2Fusr%2Flocal%2FTrolltech%2FQt5-imx6-1%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EIt%20pass%20but%20I%20got%20problem%20when%20I%20run%20'make'%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2Farm-fsl-linux-gnueabi-g%2B%2B%20-Wl%2C-rpath-link%2C%2Fmedia%2Fnew-version%2Fbuild%2FL3.0.35_4.0.0%2Fltib%2Frootfs%2Fusr%2Flib%20-Wl%2C--no-undefined%20-Wl%2C-O1%20-Wl%2C-rpath%2C%2Fusr%2Flocal%2FQt-5.0.0%2FQt5-imx6-1%2Flib%20-shared%20-o%20libqsqlmysql.so%20.obj%2Frelease-shared%2Fmain.o%20.obj%2Frelease-shared%2Fqsql_mysql.o%20.obj%2Frelease-shared%2Fmoc_qsql_mysql_p.o%26nbsp%3B%20-L%2Fmedia%2Fnew-version%2Fbuild%2FL3.0.35_4.0.0%2Fltib%2Frootfs%2Fusr%2Flib%20-L%2Fusr%2Flib%20-Wl%2C-Bsymbolic-functions%20-rdynamic%20-L%2Fusr%2Flib%2Fmysql%20-lmysqlclient_r%20-L%2Fmedia%2Fnew-version%2Fbuild%2Fltib%2Frpm%2FBUILD%2Fqt5%2Fqtbase%2Flib%20-lQt5Sql%20-lQt5Core%20-lpthread%26nbsp%3B%20%3C%2FP%3E%3CP%3E%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2F..%2Flib%2Fgcc%2Farm-fsl-linux-gnueabi%2F4.6.2%2F..%2F..%2F..%2F..%2Farm-fsl-linux-gnueabi%2Fbin%2Fld%3A%20skipping%20incompatible%20%2Fusr%2Flib%2Flibpthread_nonshared.a%20when%20searching%20for%20libpthread_nonshared.a%3C%2FP%3E%3CP%3E%2Fopt%2Ffreescale%2Fusr%2Flocal%2Fgcc-4.6.2-glibc-2.13-linaro-multilib-2011.12%2Ffsl-linaro-toolchain%2Fbin%2F..%2Flib%2Fgcc%2Farm-fsl-linux-gnueabi%2F4.6.2%2F..%2F..%2F..%2F..%2Farm-fsl-linux-gnueabi%2Fbin%2Fld%3A%20skipping%20incompatible%20%2Fusr%2Flib%2Flibc_nonshared.a%20when%20searching%20for%20libc_nonshared.a%3C%2FP%3E%3CP%3E.obj%2Frelease-shared%2Fqsql_mysql.o%3A%20In%20function%20%60QMYSQLDriver%3A%3Aopen(QString%20const%26amp%3B%2C%20QString%20const%26amp%3B%2C%20QString%20const%26amp%3B%2C%20QString%20const%26amp%3B%2C%20int%2C%20QString%20const%26amp%3B)'%3A%3C%2FP%3E%3CP%3Eqsql_mysql.cpp%3A(.text%2B0x2cb4)%3A%20undefined%20reference%20to%20%60mysql_set_character_set'%3C%2FP%3E%3CP%3Ecollect2%3A%20ld%20returned%201%20exit%20status%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EI%20have%20cancel%20the%20option%20of%20the%20mysql%20when%20configure%20the%20QT5!%3C%2FP%3E%3CP%3EHow%20to%20solve%20this%20problem%3F%3C%2FP%3E%3CP%3Ethanks!%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111322%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111322%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EFAQ%3A%3C%2FP%3E%3CP%3EQuestion%3A%3C%2FP%3E%3CP%3EBut%20I%20can%20not%20build%20qtdeclarative%E2%80%A6%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3E..%2Fqtbase%2Fbin%2Fqmake%20-r%3C%2FP%3E%3CP%3EProject%20WARNING%3A%20Unknown%20build%20part(s)%3A%20demos%3C%2FP%3E%3CP%3EReading%20%2Fhome%2Fhp-lablinux%2Fltib_imx6solo_duallite%2Fqt5%2Fqtdeclarative%2Fsrc%2Fsrc.pro%3C%2FP%3E%3CP%3EReading%20%2Fhome%2Fhp-lablinux%2Fltib_imx6solo_duallite%2Fqt5%2Fqtdeclarative%2Fsrc%2Fqml%2Fqml.pro%3C%2FP%3E%3CP%3EProject%20MESSAGE%3A%20%2Fhome%2Fhp-lablinux%2Fltib_imx6solo_duallite%2Fqt5%2Fqtbase%2Fbin%2Fsyncqt%20-module%20QtQml%20-version%205.1.0%20-outdir%20%2Fhome%2Fhp-lablinux%2Fltib_imx6solo_duallite%2Fqt5%2Fqtdeclarative%20%2Fhome%2Fhp-lablinux%2Fltib_imx6solo_duallite%2Fqt5%2Fqtdeclarative%3C%2FP%3E%3CP%3E%3CSRCBASE%3E%20%3D%20%2Fhome%2Fhp-lablinux%2Fltib_imx6solo_duallite%2Fqt5%2Fqtdeclarative%20%3C%2FSRCBASE%3E%3C%2FP%3E%3CP%3E%3COUTBASE%3E%20%3D%20%2Fhome%2Fhp-lablinux%2Fltib_imx6solo_duallite%2Fqt5%2Fqtdeclarative%20%3C%2FOUTBASE%3E%3C%2FP%3E%3CP%3E%3CSTRONG%3EProject%20ERROR%3A%20Unknown%20module(s)%20in%20QT_PRIVATE%3A%20v8%3C%2FSTRONG%3E%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ENot%20sure%20what%20the%20problem%20is%3F%20I%20have%20looked%20around%20but%20not%20find%20any%20useful%20hints.%20Do%20you%20have%20an%20idea%3F%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3ESolution%3A%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22margin-right%3A%200.9pt%3B%20margin-left%3A%2013.6pt%3B%20margin-bottom%3A%200.0001pt%3B%20text-indent%3A%20-7.5pt%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010.0pt%3B%20font-family%3A%20'Arial'%2C'sans-serif'%3B%20color%3A%20black%3B%22%3E%E2%80%9Cmodify%20this%20file%20qtbase%2Fbin%2Fqt.conf%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22margin-right%3A%200.9pt%3B%20margin-left%3A%2013.6pt%3B%20margin-bottom%3A%200.0001pt%3B%20text-indent%3A%20-7.5pt%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010.0pt%3B%20font-family%3A%20'Arial'%2C'sans-serif'%3B%20color%3A%20black%3B%22%3Eand%20add%20the%20correct%20prefix%2C%20the%20one%20given%20on%20cofigure%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22margin-right%3A%200.9pt%3B%20margin-left%3A%2013.6pt%3B%20margin-bottom%3A%200.0001pt%3B%20text-indent%3A%20-7.5pt%3B%22%3E%3CSPAN%20style%3D%22font-size%3A%2010.0pt%3B%20font-family%3A%20'Arial'%2C'sans-serif'%3B%20color%3A%20black%3B%22%3E*configure%3C%2FSPAN%3E%3C%2FP%3E%3CP%20style%3D%22margin-right%3A%200.9pt%3B%20margin-left%3A%2013.6pt%3B%20margin-bottom%3A%200.0001pt%3B%20text-indent%3A%20-7.5pt%3B%22%3E%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22mce_paste_marker%22%3E%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111321%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111321%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EAfter%20running%20the%20configure%20command%2C%26nbsp%3B%20in%20the%20summary%20of%20supported%20features%2C%20OpenVG%20appears%20as%20not%20supported%2C%20is%20this%20normal%20or%20it%20means%20some%20library%20is%20missing%20on%20my%20side%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-1111320%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3ERe%3A%20Building%20QT%20for%20i.MX6%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-1111320%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3EWorks%20like%20a%20charm.%20Thank%20you!%3C%2FP%3E%3CP%3E%3C%2FP%3E%3CP%3EMy%20only%20issue%20is%20that%20my%20mouse%20or%20keyboard%20doesn't%20work%20when%20running%20with%20eglfs.%20does%20eglfs%20support%20user%20input%3F%3C%2FP%3E%3C%2FLINGO-BODY%3E
No ratings
Version history
Last update:
‎02-11-2013 10:29 AM
Updated by: