Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. [TUTO] Build Qt to cross compile for arm
Forum Updated to NodeBB v4.3 + New Features

[TUTO] Build Qt to cross compile for arm

Scheduled Pinned Locked Moved Mobile and Embedded
armcross compilecross platformlinux
68 Posts 15 Posters 54.6k Views 5 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    citiustech
    wrote on 7 Apr 2016, 06:11 last edited by
    #21

    Hello. The above solution is working fine for no-opengl.
    once opengl es2 enable for cross compile it gives opengl functionality test failed error. i have copied all the GL/GLES2 file from arm board to ubuntu pc and edit qmake.conf file. but it gives the same error.
    how to cross compile qt for arm with opengl. can you please suggest?

    1 Reply Last reply
    0
    • S Offline
      S Offline
      SGaist
      Lifetime Qt Champion
      wrote on 7 Apr 2016, 20:36 last edited by
      #22

      The headers are not enough, did you also copied the libraries ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • S Offline
        S Offline
        samapollo
        wrote on 24 Jun 2016, 12:38 last edited by
        #23

        Hello,
        I know this is a late reply, but hopefully someone is still reading this thread and active. I followed all the steps, and have everything setup. I compiled the file, but when I try and run the make I get an error saying their is no such file or directory of QGLWidget.
        I am looking for assistance as to how I can rectify this problem, and finally get my applications building and running. I have included the terminal log below:

        /home/sam/Downloads/qt-everywhere-opensource-src-4.8.5/bin/qmake -spec qt-everywhere-opensource-src-4.8.5/mkspecs/qws/linux-arm-gnueabi-g++ CONFIG+=debug -o Makefile ../Qt5.0.2/5.0.2/gcc/examples/opengl/2dpainting/2dpainting.pro
        /home/sam/Downloads/gcc-linaro-arm-linux-gnueabihf-4.8-2013.10_linux/bin/arm-linux-gnueabihf-g++ -c -pipe -g -Wall -W -D_REENTRANT -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -Iqt-everywhere-opensource-src-4.8.5/mkspecs/qws/linux-arm-gnueabi-g++ -I../Qt5.0.2/5.0.2/gcc/examples/opengl/2dpainting -I/usr/local/Qt-4.8.5-arm/include/QtCore -I/usr/local/Qt-4.8.5-arm/include/QtNetwork -I/usr/local/Qt-4.8.5-arm/include/QtGui -I/usr/local/Qt-4.8.5-arm/include/QtOpenGL -I/usr/local/Qt-4.8.5-arm/include -I. -I../Qt5.0.2/5.0.2/gcc/examples/opengl/2dpainting -I. -o glwidget.o ../Qt5.0.2/5.0.2/gcc/examples/opengl/2dpainting/glwidget.cpp
        In file included from ../Qt5.0.2/5.0.2/gcc/examples/opengl/2dpainting/glwidget.cpp:41:0:
        ../Qt5.0.2/5.0.2/gcc/examples/opengl/2dpainting/glwidget.h:44:21: fatal error: QGLWidget: No such file or directory
        #include <QGLWidget>

        THANKS!!!

        1 Reply Last reply
        0
        • S Offline
          S Offline
          SGaist
          Lifetime Qt Champion
          wrote on 24 Jun 2016, 13:53 last edited by
          #24

          Hi and welcome to devnet,

          Are you trying to build a Qt 5 example with Qt 4 ?

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          1
          • S Offline
            S Offline
            samapollo
            wrote on 24 Jun 2016, 14:55 last edited by
            #25

            Yes I am, wow I am an idiot.
            If I try to use a qt 4 example should it work?

            1 Reply Last reply
            0
            • S Offline
              S Offline
              samapollo
              wrote on 24 Jun 2016, 15:07 last edited by
              #26

              So I am using the proper example now, it compiles, but when I run the make It says:

              make: Nothing to be done for 'first'.

              I have attached the entire command and response below:

              sam@sam-VirtualBox:~/Downloads$ "/home/sam/Downloads/qt-everywhere-opensource-src-4.8.5/bin/qmake" '/home/sam/classwizard/classwizard.pro' -r CONFIG+=debug -spec /home/sam/Downloads/qt-everywhere-opensource-src-4.8.5/mkspecs/qws/linux-arm-gnueabi-g++
              sam@sam-VirtualBox:~/Downloads$ make
              make: Nothing to be done for `first'.

              1 Reply Last reply
              0
              • S Offline
                S Offline
                SGaist
                Lifetime Qt Champion
                wrote on 24 Jun 2016, 20:07 last edited by
                #27

                Did you cross-compile Qt ? If so did you install it ?

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                1
                • S Offline
                  S Offline
                  samapollo
                  wrote on 27 Jun 2016, 08:14 last edited by
                  #28

                  I thought I built it for ARM and it would just run on its own.
                  Do I need Qt installed on my ARM hardware?
                  When I move the folder to my ARM hardware I get this error when I try to run it:
                  ./classwizard: undefined symbol: _ZN7QWidget8qwsEventEP8QSEvent

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on 27 Jun 2016, 09:09 last edited by
                    #29

                    Looks like you cross-compiled your application with Qt 4 and try to run it against Qt 5.

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    1
                    • S Offline
                      S Offline
                      samapollo
                      wrote on 27 Jun 2016, 11:40 last edited by samapollo
                      #30

                      I have Qt 4 on my arm device, but I am still getting the same error. Not sure what to do here?
                      I have Qt 4 on Raspbian on a Raspberry Pi 3 model B.
                      Not sure why this error keeps coming up.

                      1 Reply Last reply
                      0
                      • S Offline
                        S Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on 27 Jun 2016, 11:46 last edited by
                        #31

                        Because the Qt 4 you have installed with Raspbian is a standard Qt build for ARM not a Qt for embedded device build.

                        You have have to cross-compile your Qt 4 again without the embedded option.

                        Interested in AI ? www.idiap.ch
                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                        1 Reply Last reply
                        1
                        • S Offline
                          S Offline
                          samapollo
                          wrote on 27 Jun 2016, 12:12 last edited by samapollo
                          #32

                          But the Qt I have on my linux where I built the project is for ARM. Its the one for this project.
                          So should I just use the build from this post on my pi?

                          1 Reply Last reply
                          0
                          • S Offline
                            S Offline
                            SGaist
                            Lifetime Qt Champion
                            wrote on 27 Jun 2016, 12:20 last edited by
                            #33

                            I didn't say the contrary: both builds are valid. The one you have on your desktop machine is a Qt For Embedded Linux build which uses QWS while on your Raspbian you have a standard as in "desktop standard" build of Qt 4.

                            It depends on how you want to use your application on your Pi. If its the QWS functionality that you need then you have to install your self-built Qt 4 on the Pi.

                            Interested in AI ? www.idiap.ch
                            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 Reply Last reply
                            1
                            • S Offline
                              S Offline
                              samapollo
                              wrote on 27 Jun 2016, 12:30 last edited by samapollo
                              #34

                              What if I just created a deb package on my Linux machine, and then used that on the Pi?
                              Or is it better to just do the custom build? (really dont want to do that painful process)
                              Is this a guide I can use as a base for this build?:
                              http://processors.wiki.ti.com/index.php/Building_Qt_with_OpenGL_ES_accelerated_by_SGX

                              1 Reply Last reply
                              0
                              • S Offline
                                S Offline
                                samapollo
                                wrote on 27 Jun 2016, 14:50 last edited by
                                #35

                                So I managed to compile and run a Hello World project. Creating the make and executable on my Linux with this ARM build. Then moving it onto the Pi and running it. But when I try anything more complex I am getting the same error.

                                1 Reply Last reply
                                0
                                • S Offline
                                  S Offline
                                  SGaist
                                  Lifetime Qt Champion
                                  wrote on 27 Jun 2016, 16:13 last edited by
                                  #36

                                  Again: this is an Qt for Embedded Linux build see the -embedded arm configure option. Thus my question, are you going to use the X Server of your Pi ?

                                  If yes, you have to rebuild Qt without the embedded options but keep the ARM target.

                                  If no, then one basic option is to copy the content of the cross-compiled Qt installation folder over to your Pi at the same place and you should be good to go (you can later remove stuff like the host tools headers etc.)

                                  Interested in AI ? www.idiap.ch
                                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  1 Reply Last reply
                                  0
                                  • S Offline
                                    S Offline
                                    samapollo
                                    wrote on 14 Jul 2016, 11:22 last edited by
                                    #37

                                    How can I do this compilation with opengl?

                                    1 Reply Last reply
                                    0
                                    • S Offline
                                      S Offline
                                      SGaist
                                      Lifetime Qt Champion
                                      wrote on 14 Jul 2016, 20:58 last edited by
                                      #38

                                      Which version of Qt are you currently using ?

                                      Interested in AI ? www.idiap.ch
                                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      1 Reply Last reply
                                      0
                                      • H Offline
                                        H Offline
                                        HafsaElif
                                        wrote on 17 Jul 2019, 06:49 last edited by
                                        #39

                                        Execute this command to install Qt in the /usr/local/Qt-4.8.5-arm/ directory : ./configure -opensource -confirm-license -prefix /usr/local/Qt-4.8.5-arm -embedded arm -little-endian -no-pch -xplatform qws/linux-arm-gnueabi-g++

                                        In this step Did you create /usr/local/Qt-4.8.5-arm/ directory ? or Did created by qt creator when installitaion?

                                        1 Reply Last reply
                                        0
                                        • A Offline
                                          A Offline
                                          Asha
                                          wrote on 12 Sept 2019, 10:28 last edited by
                                          #40
                                          This post is deleted!
                                          1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved