Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Troubles installing QtWayland
Forum Updated to NodeBB v4.3 + New Features

Troubles installing QtWayland

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
19 Posts 2 Posters 5.9k Views 1 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.
  • S Offline
    S Offline
    SGaist
    Lifetime Qt Champion
    wrote on 27 Feb 2017, 21:53 last edited by
    #6

    Just realised something: against which version of Qt are you building the module ?

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

    P 1 Reply Last reply 1 Mar 2017, 11:39
    0
    • S SGaist
      27 Feb 2017, 21:53

      Just realised something: against which version of Qt are you building the module ?

      P Offline
      P Offline
      papaj
      wrote on 1 Mar 2017, 11:39 last edited by
      #7

      @SGaist I have both 4 and 5.8. I have set 5.8 as default by

      sudo apt-get install qt5-default
      
      1 Reply Last reply
      0
      • S Offline
        S Offline
        SGaist
        Lifetime Qt Champion
        wrote on 4 Mar 2017, 20:48 last edited by
        #8

        Did you also check that you have all the Qt development package installed ?

        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
        • P Offline
          P Offline
          papaj
          wrote on 10 Mar 2017, 15:07 last edited by
          #9

          I have got every Qt dev package :(. I think the problem is with the git I have cloned. This it the output from sudo make

          
          sudo make
          cd src/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /home/misiaczek/qtwayland/src/src.pro CONFIG+=wayland-compositor -o Makefile ) && make -f Makefile 
          make[1]: Entering directory '/home/misiaczek/qtwayland/src'
          make[1]: Nothing to be done for 'first'.
          make[1]: Leaving directory '/home/misiaczek/qtwayland/src'
          cd examples/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /home/misiaczek/qtwayland/examples/examples.pro CONFIG+=wayland-compositor -o Makefile ) && make -f Makefile 
          make[1]: Entering directory '/home/misiaczek/qtwayland/examples'
          cd wayland/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /home/misiaczek/qtwayland/examples/wayland/wayland.pro CONFIG+=wayland-compositor -o Makefile ) && make -f Makefile 
          make[2]: Entering directory '/home/misiaczek/qtwayland/examples/wayland'
          Some of the required modules (qtHaveModule(waylandcompositor) qtConfig(opengl)) are not available.
          Skipped.
          make[2]: Leaving directory '/home/misiaczek/qtwayland/examples/wayland'
          make[1]: Leaving directory '/home/misiaczek/qtwayland/examples'
          

          It seems like /src is omitted, am I right? It should compile everything, shouldn't it?

          1 Reply Last reply
          0
          • S Offline
            S Offline
            SGaist
            Lifetime Qt Champion
            wrote on 11 Mar 2017, 22:16 last edited by
            #10

            What distribution are you 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
            • P Offline
              P Offline
              papaj
              wrote on 12 Mar 2017, 15:42 last edited by papaj 3 Dec 2017, 15:42
              #11

              Mint 18.1, I tried on Ubuntu 16.04 with the same results.
              Both 64bit

              1 Reply Last reply
              0
              • S Offline
                S Offline
                SGaist
                Lifetime Qt Champion
                wrote on 12 Mar 2017, 20:21 last edited by
                #12

                Which version of Qt is installed on your system ?

                You likely have the 5.9 version of the QtWayland module while your distribution version if older.

                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
                • P Offline
                  P Offline
                  papaj
                  wrote on 13 Mar 2017, 13:05 last edited by
                  #13

                  I have Qt 5.8

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on 14 Mar 2017, 22:52 last edited by
                    #14

                    Also for the qtwayland module ?

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

                    P 1 Reply Last reply 15 Mar 2017, 20:42
                    0
                    • S SGaist
                      14 Mar 2017, 22:52

                      Also for the qtwayland module ?

                      P Offline
                      P Offline
                      papaj
                      wrote on 15 Mar 2017, 20:42 last edited by
                      #15

                      @SGaist I have cloned branch 5.8 yet got the same error :c

                      1 Reply Last reply
                      0
                      • S Offline
                        S Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on 15 Mar 2017, 21:21 last edited by
                        #16

                        I think there's some stuff mixed up here.

                        From your last compilation log, it looks like you are using your distribution qmake, is that correct ?

                        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
                        • P Offline
                          P Offline
                          papaj
                          wrote on 22 Mar 2017, 18:51 last edited by
                          #17

                          K. I made a clear installation of mint.
                          Installed qt open source from the webpage and ran the following commands:

                          sudo apt-get install git
                          sudo apt-get install qt5-default
                          git clone git://code.qt.io/qt/qtwayland.git --branch 5.8 --single-branch
                          cd qtwayland
                          qmake CONFIG+=wayland-compositor
                          qmake
                          sudo make
                          
                          

                          got this again:

                          
                          cd src/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /home/emile/qtwayland/src/src.pro -o Makefile ) && make -f Makefile 
                          make[1]: Entering directory '/home/emile/qtwayland/src'
                          make[1]: Nothing to be done for 'first'.
                          make[1]: Leaving directory '/home/emile/qtwayland/src'
                          cd examples/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /home/emile/qtwayland/examples/examples.pro -o Makefile ) && make -f Makefile 
                          make[1]: Entering directory '/home/emile/qtwayland/examples'
                          cd wayland/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake /home/emile/qtwayland/examples/wayland/wayland.pro -o Makefile ) && make -f Makefile 
                          make[2]: Entering directory '/home/emile/qtwayland/examples/wayland'
                          Some of the required modules (qtHaveModule(waylandcompositor) qtConfig(opengl)) are not available.
                          Skipped.
                          make[2]: Leaving directory '/home/emile/qtwayland/examples/wayland'
                          make[1]: Leaving directory '/home/emile/qtwayland/examples'
                          
                          
                          1 Reply Last reply
                          0
                          • S Offline
                            S Offline
                            SGaist
                            Lifetime Qt Champion
                            wrote on 22 Mar 2017, 21:51 last edited by
                            #18

                            What is the version of Qt that is installed on your machine ?

                            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
                            • P Offline
                              P Offline
                              papaj
                              wrote on 27 Mar 2017, 15:12 last edited by
                              #19

                              5.8 as earlier

                              1 Reply Last reply
                              0

                              15/19

                              15 Mar 2017, 20:42

                              • Login

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