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. Qt and Jetson TK1 - Compiler Toolchain Setup Help

Qt and Jetson TK1 - Compiler Toolchain Setup Help

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
29 Posts 2 Posters 9.1k Views
  • 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.
  • W Offline
    W Offline
    webzoid
    wrote on 13 Jun 2017, 08:55 last edited by
    #1

    I'd like any advice, if possible, with regards to setting up Qt for cross-compilation targetting the NVIDIA Jetson TK1. This is my first attempt at cross-compiling a Qt application so please excuse me if my questions are trivial.

    I have a couple of scenarios with which I'd appreciate some help:

    1. Qt creator is installed on the TK1 itself along with Qt 5.2.1.
      In the Kits setup, the sysroots path is empty and I'm unsure what to set this to. It would appear that in the /usr/bin folder are the relevant 'arm-linux-gnueabihf-' tools so would I point sysroots to this location?

    2. Qt creator is installed on an Ubuntu 16.04 host machine with Qt 5.9 and 5.2.1.
      As far as I am aware, in order to cross-compile for the TK1, I need to copy some directories from the Jetson TK1 onto my host machine and point Qt towards those. Is this correct?

    Thanks in advance.

    J 1 Reply Last reply 13 Jun 2017, 11:34
    0
    • W webzoid
      13 Jun 2017, 08:55

      I'd like any advice, if possible, with regards to setting up Qt for cross-compilation targetting the NVIDIA Jetson TK1. This is my first attempt at cross-compiling a Qt application so please excuse me if my questions are trivial.

      I have a couple of scenarios with which I'd appreciate some help:

      1. Qt creator is installed on the TK1 itself along with Qt 5.2.1.
        In the Kits setup, the sysroots path is empty and I'm unsure what to set this to. It would appear that in the /usr/bin folder are the relevant 'arm-linux-gnueabihf-' tools so would I point sysroots to this location?

      2. Qt creator is installed on an Ubuntu 16.04 host machine with Qt 5.9 and 5.2.1.
        As far as I am aware, in order to cross-compile for the TK1, I need to copy some directories from the Jetson TK1 onto my host machine and point Qt towards those. Is this correct?

      Thanks in advance.

      J Offline
      J Offline
      jsulm
      Lifetime Qt Champion
      wrote on 13 Jun 2017, 11:34 last edited by
      #2

      @webzoid For case one you do not need any sysroot as you do not cross compile. Just set up compiler and Qt version correctly.
      Case 2: yes, you need a sysroot. A sysroot is basically your target device file system containing all needed header files and libraries. But sysroot alone is not enough: you need a cross compiler. A compiler running on your host but generating binaries for the target device.

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • W Offline
        W Offline
        webzoid
        wrote on 13 Jun 2017, 11:40 last edited by
        #3

        @jsulm Thanks for your response.

        Scenario 2 is most important to me. As far as I understand, the arm-linux-gnueabihf compiler could be used as the cross-compiler? The sysroot would be the /lib and /usr/include directories? Would it be a case of copying these up to the host machine?

        Sorry again if my questions are basic. I've never done this before.

        J 1 Reply Last reply 13 Jun 2017, 11:45
        0
        • W webzoid
          13 Jun 2017, 11:40

          @jsulm Thanks for your response.

          Scenario 2 is most important to me. As far as I understand, the arm-linux-gnueabihf compiler could be used as the cross-compiler? The sysroot would be the /lib and /usr/include directories? Would it be a case of copying these up to the host machine?

          Sorry again if my questions are basic. I've never done this before.

          J Offline
          J Offline
          jsulm
          Lifetime Qt Champion
          wrote on 13 Jun 2017, 11:45 last edited by
          #4

          @webzoid If your target device uses an ARM processor, then yes it should be fine.
          You can copy needed parts of the target file system (retaining the file system hierarchy), or you can put the SDCard (if you use one for the target device) into your PC, or you can mount the target device file system using NFS.

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • W Offline
            W Offline
            webzoid
            wrote on 13 Jun 2017, 11:55 last edited by
            #5

            @jsulm Yes, the target is an NVIDIA Tegra K1 ARM-A15 processor. It's probably easier if I copy the required directories up to the host rather than via microSD card, etc. Presumably, there would be no problem if I was to put the directories into a sub-directory for the target? Or do they need to live in the SAME directories as they would on the target for linkage purposes?

            J 1 Reply Last reply 13 Jun 2017, 12:04
            0
            • W webzoid
              13 Jun 2017, 11:55

              @jsulm Yes, the target is an NVIDIA Tegra K1 ARM-A15 processor. It's probably easier if I copy the required directories up to the host rather than via microSD card, etc. Presumably, there would be no problem if I was to put the directories into a sub-directory for the target? Or do they need to live in the SAME directories as they would on the target for linkage purposes?

              J Offline
              J Offline
              jsulm
              Lifetime Qt Champion
              wrote on 13 Jun 2017, 12:04 last edited by
              #6

              @webzoid No, you can put them in a subdirectory, you just need to retain the same directory structure inside that directory:

              SYSROOT_ROOT_DIR/
                  usr/
                      include/
                      lib/
              ...
              

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              0
              • W Offline
                W Offline
                webzoid
                wrote on 13 Jun 2017, 13:04 last edited by
                #7

                @jsulm Thanks, I'll give this a try shortly. I just didn't want to make a mess of the file system on the host before fully understanding what I was trying to achieve. Thanks for your help

                1 Reply Last reply
                0
                • W Offline
                  W Offline
                  webzoid
                  wrote on 16 Jun 2017, 07:51 last edited by
                  #8

                  I've since attempted to set-up Qt for cross-compilation for my TK1 module and it has been fairly unsuccessful.

                  On my Ubuntu 16.04 host machine, I downloaded the arm-linux-gnueabihf compiler from the Linaro site and extracted the package to my home directory. I also installed Qt5 using the "apt-get install qt5-default" command and then QtCreator "apt-get install qtcreator".

                  I then created a "tk1" folder within the home directory and "scp'd" the /usr/bin, /usr/lib and /usr/include directories from my TK1 target machine up to the "tk1" folder - maintaining the original directory structure.

                  Looking at the Qt installations, running "qmake -v" on the TK1 tells me that QMake version 3.0 is being used and Qt version 5.2.1 in /usr/lib/arm-linux-gnueabihf.

                  Looking at the host machine, running "qmake -v" tells me that QMake is also version 3.0 and that Qt version 5.5.1 is being used in /usr/lib/x86_64-linux.

                  Now to Qt Creator on the Ubuntu host machine...

                  I've added my device into the Tools -> Options ->Devices list and have successfully tested that I can connect to it via its IP address.

                  Tools -> Options -> Build & Run -> Compilers show that GCC has been detected in the /usr/bin folder of my host machine. At this point, I add a manual entry for the arm-linux-gnueabihf-gcc and arm-linux-gnueabihf-g++ compilers which are in my home directory (from the Linaro release).

                  Tools -> Options -> Build & Run -> Qt Versions show two version of Qt installed on my host machine: 5.2.1 in /home/ubuntu/Qt/5.2.1/gcc_64/bin/qmake and also 5.9.0 in /home/ubuntu/Qt/5.9/gcc_64/bin/qmake. At this point, I add a manual entry and locate the "qmake" executable from the ~/tk1/usr/bin/qmake. When I click OK, I'm presented with the following message:

                  "The qmake executable /home/ubuntu/tk1/usr/bin/qmake could not be added:" with no reason given as to why not. If I subsequently try to get the version of QMake within the /home/ubuntu/tk1/usr/bin folder using "qmake -v", an error pops up saying "/lib/ld-linux-armhf.so.3: No such file or directory"

                  And from this point, I'm a bit lost...

                  J 1 Reply Last reply 19 Jun 2017, 09:19
                  0
                  • W webzoid
                    16 Jun 2017, 07:51

                    I've since attempted to set-up Qt for cross-compilation for my TK1 module and it has been fairly unsuccessful.

                    On my Ubuntu 16.04 host machine, I downloaded the arm-linux-gnueabihf compiler from the Linaro site and extracted the package to my home directory. I also installed Qt5 using the "apt-get install qt5-default" command and then QtCreator "apt-get install qtcreator".

                    I then created a "tk1" folder within the home directory and "scp'd" the /usr/bin, /usr/lib and /usr/include directories from my TK1 target machine up to the "tk1" folder - maintaining the original directory structure.

                    Looking at the Qt installations, running "qmake -v" on the TK1 tells me that QMake version 3.0 is being used and Qt version 5.2.1 in /usr/lib/arm-linux-gnueabihf.

                    Looking at the host machine, running "qmake -v" tells me that QMake is also version 3.0 and that Qt version 5.5.1 is being used in /usr/lib/x86_64-linux.

                    Now to Qt Creator on the Ubuntu host machine...

                    I've added my device into the Tools -> Options ->Devices list and have successfully tested that I can connect to it via its IP address.

                    Tools -> Options -> Build & Run -> Compilers show that GCC has been detected in the /usr/bin folder of my host machine. At this point, I add a manual entry for the arm-linux-gnueabihf-gcc and arm-linux-gnueabihf-g++ compilers which are in my home directory (from the Linaro release).

                    Tools -> Options -> Build & Run -> Qt Versions show two version of Qt installed on my host machine: 5.2.1 in /home/ubuntu/Qt/5.2.1/gcc_64/bin/qmake and also 5.9.0 in /home/ubuntu/Qt/5.9/gcc_64/bin/qmake. At this point, I add a manual entry and locate the "qmake" executable from the ~/tk1/usr/bin/qmake. When I click OK, I'm presented with the following message:

                    "The qmake executable /home/ubuntu/tk1/usr/bin/qmake could not be added:" with no reason given as to why not. If I subsequently try to get the version of QMake within the /home/ubuntu/tk1/usr/bin folder using "qmake -v", an error pops up saying "/lib/ld-linux-armhf.so.3: No such file or directory"

                    And from this point, I'm a bit lost...

                    J Offline
                    J Offline
                    jsulm
                    Lifetime Qt Champion
                    wrote on 19 Jun 2017, 09:19 last edited by jsulm
                    #9

                    @webzoid said in Qt and Jetson TK1 - Compiler Toolchain Setup Help:

                    apt-get install qt5-default

                    Well, you installed Qt for your host machine not your target device.
                    You need to cross-compile Qt for your target device, then you will have qmake for it which you then use in your kit. This qmake will be an x86 executable.
                    ""The qmake executable /home/ubuntu/tk1/usr/bin/qmake could not be added:" with no reason given as to why not" - because this qmake is an ARM binary not x86. Your x86 host machine cannot execute ARM binaries. You need to cross-compile Qt.

                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • W Offline
                      W Offline
                      webzoid
                      wrote on 19 Jun 2017, 10:57 last edited by webzoid
                      #10

                      @jsulm I also performed "apt-get install qt5-default" on the TK1 prior to sync'ing the /usr/lib, /usr/bin, etc. Sorry, I completely forgot to mention this in my previous post.

                      J 1 Reply Last reply 19 Jun 2017, 11:14
                      0
                      • W webzoid
                        19 Jun 2017, 10:57

                        @jsulm I also performed "apt-get install qt5-default" on the TK1 prior to sync'ing the /usr/lib, /usr/bin, etc. Sorry, I completely forgot to mention this in my previous post.

                        J Offline
                        J Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on 19 Jun 2017, 11:14 last edited by
                        #11

                        @webzoid As I said: you cannot execute binaries from your target device on your host. So, "apt-get install qt5-default" on the TK1 will not help as the qmake it installs is an ARM binary.

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        W 1 Reply Last reply 19 Jun 2017, 11:26
                        0
                        • J jsulm
                          19 Jun 2017, 11:14

                          @webzoid As I said: you cannot execute binaries from your target device on your host. So, "apt-get install qt5-default" on the TK1 will not help as the qmake it installs is an ARM binary.

                          W Offline
                          W Offline
                          webzoid
                          wrote on 19 Jun 2017, 11:26 last edited by webzoid
                          #12

                          @jsulm I appreciate that they won't execute due to architecture differences but given that I've sync'd the "TK1" binaries up to my Ubuntu host machine and pointed Qt towards them, isn't that the same as cross-compiling Qt as you suggested previously? Won't the result be the same - Qt which can execute on an ARM core? This may be what I'm missing or not understanding - sorry.

                          J 1 Reply Last reply 19 Jun 2017, 11:29
                          0
                          • W webzoid
                            19 Jun 2017, 11:26

                            @jsulm I appreciate that they won't execute due to architecture differences but given that I've sync'd the "TK1" binaries up to my Ubuntu host machine and pointed Qt towards them, isn't that the same as cross-compiling Qt as you suggested previously? Won't the result be the same - Qt which can execute on an ARM core? This may be what I'm missing or not understanding - sorry.

                            J Offline
                            J Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on 19 Jun 2017, 11:29 last edited by jsulm
                            #13

                            @webzoid To cross compile your Qt app you need qmake, the qmake you have from your device cannot be used on your host. So, no it is not really same as cross compiling Qt. If you cross-compile Qt you will have qmake (and some other Qt tools) build for your host machine, but all Qt libs built for your target device.
                            This is how a Qt app using qmake is built:

                            qmake
                            make
                            make install (optional)
                            

                            qmake must be the one from your Qt for target device, but it must be executable on your host.

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 Reply Last reply
                            0
                            • W Offline
                              W Offline
                              webzoid
                              wrote on 19 Jun 2017, 11:34 last edited by
                              #14

                              @jsulm I was just going to post this, until I saw your last reply.

                              My understanding (which is where I'm probably going wrong) is this:

                              The TK1 has Qt5 installed - which works. This TK1 installation contains all the binaries/libs/includes which allows applications to be compiled for the TK1. I can compile directly on the TK1 using QtCreator but don't want to do this.

                              All the toolchain on my host Ubuntu machine needs to do is to point to these binaries/libs/include files to generate code relevant to the ARM architecture. Is this not a fair assumption? Again, apologies if my lack of understanding is confusing things.

                              Ok, I think I understand now - so basically, I need a qmake binary which can execute on my Ubuntu host (for x86_64) BUT targets ARM architecture. For clarity, is this what you're saying?

                              I guess I was thinking that it'd be like GCC where I just specify the target architecture and libs I want to link it and it just works.

                              J 1 Reply Last reply 19 Jun 2017, 11:39
                              0
                              • W webzoid
                                19 Jun 2017, 11:34

                                @jsulm I was just going to post this, until I saw your last reply.

                                My understanding (which is where I'm probably going wrong) is this:

                                The TK1 has Qt5 installed - which works. This TK1 installation contains all the binaries/libs/includes which allows applications to be compiled for the TK1. I can compile directly on the TK1 using QtCreator but don't want to do this.

                                All the toolchain on my host Ubuntu machine needs to do is to point to these binaries/libs/include files to generate code relevant to the ARM architecture. Is this not a fair assumption? Again, apologies if my lack of understanding is confusing things.

                                Ok, I think I understand now - so basically, I need a qmake binary which can execute on my Ubuntu host (for x86_64) BUT targets ARM architecture. For clarity, is this what you're saying?

                                I guess I was thinking that it'd be like GCC where I just specify the target architecture and libs I want to link it and it just works.

                                J Offline
                                J Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on 19 Jun 2017, 11:39 last edited by
                                #15

                                @webzoid said in Qt and Jetson TK1 - Compiler Toolchain Setup Help:

                                Ok, I think I understand now - so basically, I need a qmake binary which can execute on my Ubuntu host (for x86_64) BUT targets ARM architecture. For clarity, is this what you're saying?

                                yes, that's correct.
                                You cannot use qmake from your host PC Qt installation as it is configured for x86 Qt set-up.

                                https://forum.qt.io/topic/113070/qt-code-of-conduct

                                W 1 Reply Last reply 19 Jun 2017, 11:39
                                0
                                • J jsulm
                                  19 Jun 2017, 11:39

                                  @webzoid said in Qt and Jetson TK1 - Compiler Toolchain Setup Help:

                                  Ok, I think I understand now - so basically, I need a qmake binary which can execute on my Ubuntu host (for x86_64) BUT targets ARM architecture. For clarity, is this what you're saying?

                                  yes, that's correct.
                                  You cannot use qmake from your host PC Qt installation as it is configured for x86 Qt set-up.

                                  W Offline
                                  W Offline
                                  webzoid
                                  wrote on 19 Jun 2017, 11:39 last edited by webzoid
                                  #16

                                  @jsulm And I also can't use the one from the TK1 qt5-default installation as it is built for ARM and cannot be executed on my host

                                  J 1 Reply Last reply 19 Jun 2017, 11:40
                                  0
                                  • W webzoid
                                    19 Jun 2017, 11:39

                                    @jsulm And I also can't use the one from the TK1 qt5-default installation as it is built for ARM and cannot be executed on my host

                                    J Offline
                                    J Offline
                                    jsulm
                                    Lifetime Qt Champion
                                    wrote on 19 Jun 2017, 11:40 last edited by
                                    #17

                                    @webzoid yes. That's why you usually cross-compile Qt for your target device.

                                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                                    W 1 Reply Last reply 19 Jun 2017, 11:48
                                    0
                                    • J jsulm
                                      19 Jun 2017, 11:40

                                      @webzoid yes. That's why you usually cross-compile Qt for your target device.

                                      W Offline
                                      W Offline
                                      webzoid
                                      wrote on 19 Jun 2017, 11:48 last edited by
                                      #18

                                      @jsulm Ok, thank you. I guess this is the step I was missing and not really understanding. Thank you for your help, I'll start Googling cross-compiling qmake...

                                      1 Reply Last reply
                                      0
                                      • W Offline
                                        W Offline
                                        webzoid
                                        wrote on 19 Jun 2017, 14:48 last edited by
                                        #19

                                        Somewhat more successful now.

                                        I've been following the following instructions:

                                        http://blog.qt.io/blog/2016/11/10/qt-nvidia-jetson-tx1-device-creation-style/

                                        And have now successfully compiled and deployed qt5 onto my target and also set up qt creator to target the TK1. I ran into an issue whereby the target was complaining about the following:

                                        /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version 'CXXABI_1.3.9' not found
                                        

                                        but updating GCC/G++ on the target fixed this.

                                        The final hurdle I need to get over is that when trying to launch my qt application (having been deployed from qt creator), I now get the following error and the application fails to launch:

                                        QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
                                        qt.qpa.egldeviceintegration: Failed to load EGL device integration "eglfs_kms_egldevice"
                                        EGL library doesn't support Emulator extensions
                                        
                                        W 1 Reply Last reply 20 Jun 2017, 08:01
                                        0
                                        • W webzoid
                                          19 Jun 2017, 14:48

                                          Somewhat more successful now.

                                          I've been following the following instructions:

                                          http://blog.qt.io/blog/2016/11/10/qt-nvidia-jetson-tx1-device-creation-style/

                                          And have now successfully compiled and deployed qt5 onto my target and also set up qt creator to target the TK1. I ran into an issue whereby the target was complaining about the following:

                                          /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version 'CXXABI_1.3.9' not found
                                          

                                          but updating GCC/G++ on the target fixed this.

                                          The final hurdle I need to get over is that when trying to launch my qt application (having been deployed from qt creator), I now get the following error and the application fails to launch:

                                          QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
                                          qt.qpa.egldeviceintegration: Failed to load EGL device integration "eglfs_kms_egldevice"
                                          EGL library doesn't support Emulator extensions
                                          
                                          W Offline
                                          W Offline
                                          webzoid
                                          wrote on 20 Jun 2017, 08:01 last edited by
                                          #20

                                          Looking at the output from the ./configure script, it looks as though the EGL Device is not enabled...

                                          Configure summary:
                                          
                                          Building on: linux-g++ (x86_64, CPU features: mmx sse sse2)
                                          Building for: devices/linux-jetson-tk1-g++ (arm, CPU features: neon)
                                          Configuration: cross_compile use_gold_linker compile_examples enable_new_dtags largefile neon precompile_header shared rpath release c++11 c++14 c++1z concurrent dbus mremap reduce_exports stl
                                          Build options:
                                            Mode ................................... release
                                            Optimize release build for size ........ no
                                            Building shared libraries .............. yes
                                            Using C++ standard ..................... C++1z
                                            Using gold linker ...................... yes
                                            Using new DTAGS ........................ yes
                                            Using precompiled headers .............. yes
                                            Using LTCG ............................. no
                                            Target compiler supports:
                                              NEON ................................. yes
                                            Build parts ............................ libs
                                          Qt modules and options:
                                            Qt Concurrent .......................... yes
                                            Qt D-Bus ............................... yes
                                            Qt D-Bus directly linked to libdbus .... no
                                            Qt Gui ................................. yes
                                            Qt Network ............................. yes
                                            Qt Sql ................................. yes
                                            Qt Testlib ............................. yes
                                            Qt Widgets ............................. yes
                                            Qt Xml ................................. yes
                                          Support enabled for:
                                            Using pkg-config ....................... yes
                                            QML debugging .......................... yes
                                            udev ................................... yes
                                            Using system zlib ...................... yes
                                          Qt Core:
                                            DoubleConversion ....................... yes
                                              Using system DoubleConversion ........ no
                                            GLib ................................... no
                                            iconv .................................. yes
                                            ICU .................................... no
                                            Logging backends:
                                              journald ............................. no
                                              syslog ............................... no
                                              slog2 ................................ no
                                            Using system PCRE2 ..................... no
                                          Qt Network:
                                            getaddrinfo() .......................... yes
                                            getifaddrs() ........................... yes
                                            IPv6 ifname ............................ yes
                                            libproxy ............................... no
                                            OpenSSL ................................ no
                                              Qt directly linked to OpenSSL ........ no
                                            SCTP ................................... no
                                            Use system proxies ..................... yes
                                          Qt Gui:
                                            Accessibility .......................... yes
                                            FreeType ............................... yes
                                              Using system FreeType ................ yes
                                            HarfBuzz ............................... yes
                                              Using system HarfBuzz ................ no
                                            Fontconfig ............................. yes
                                            Image formats:
                                              GIF .................................. yes
                                              ICO .................................. yes
                                              JPEG ................................. yes
                                                Using system libjpeg ............... no
                                              PNG .................................. yes
                                                Using system libpng ................ yes
                                            EGL .................................... yes
                                            OpenVG ................................. no
                                            OpenGL:
                                              Desktop OpenGL ....................... no
                                              OpenGL ES 2.0 ........................ yes
                                              OpenGL ES 3.0 ........................ yes
                                              OpenGL ES 3.1 ........................ no
                                            Session Management ..................... yes
                                          Features used by QPA backends:
                                            evdev .................................. yes
                                            libinput ............................... no
                                            INTEGRITY HID .......................... no
                                            mtdev .................................. no
                                            tslib .................................. no
                                            xkbcommon-evdev ........................ no
                                          QPA backends:
                                            DirectFB ............................... no
                                            EGLFS .................................. yes
                                            EGLFS details:
                                              EGLFS i.Mx6 .......................... no
                                              EGLFS i.Mx6 Wayland .................. no
                                              EGLFS EGLDevice ...................... no
                                              EGLFS GBM ............................ no
                                              EGLFS Mali ........................... no
                                              EGLFS Raspberry Pi ................... no
                                              EGL on X11 ........................... no
                                            LinuxFB ................................ yes
                                            VNC .................................... yes
                                            Mir client ............................. no
                                            X11:
                                              Using system-provided XCB libraries .. yes
                                              EGL on X11 ........................... no
                                              Xinput2 .............................. yes
                                              XCB XKB .............................. yes
                                              XLib ................................. yes
                                              XCB render ........................... yes
                                              XCB GLX .............................. yes
                                              XCB Xlib ............................. no
                                              Using system-provided xkbcommon ...... no
                                          Qt Widgets:
                                            GTK+ ................................... no
                                            Styles ................................. Fusion Windows
                                          Qt PrintSupport:
                                            CUPS ................................... no
                                          Qt Sql:
                                            DB2 (IBM) .............................. no
                                            InterBase .............................. no
                                            MySql .................................. no
                                            OCI (Oracle) ........................... no
                                            ODBC ................................... no
                                            PostgreSQL ............................. no
                                            SQLite2 ................................ no
                                            SQLite ................................. yes
                                              Using system provided SQLite ......... no
                                            TDS (Sybase) ........................... no
                                          
                                          Note: Also available for Linux: linux-clang linux-icc
                                          
                                          Note: Disabling Linux Accessibility Bridge: D-Bus is missing.
                                          
                                          Qt is now configured for building. Just run 'make'.
                                          Once everything is built, you must run 'make install'.
                                          Qt will be installed into '/home/blueprint/Desktop/TK1/qt5'.
                                          
                                          Prior to reconfiguration, make sure you remove any leftovers from
                                          the previous build.
                                          
                                          J 1 Reply Last reply 20 Jun 2017, 08:10
                                          0

                                          1/29

                                          13 Jun 2017, 08:55

                                          • Login

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