Troubles installing QtWayland
-
wrote on 26 Feb 2017, 12:19 last edited by
Yes, I done that. I can run Weston.
-
Sorry, I meant the development dependencies.
-
wrote on 27 Feb 2017, 16:03 last edited by
@SGaist That might be the reason. Could you list what I should have installed? I am 100% sure that I have everything from there: https://wiki.qt.io/QtWayland
-
Just realised something: against which version of Qt are you building the module ?
-
Did you also check that you have all the Qt development package installed ?
-
wrote on 10 Mar 2017, 15:07 last edited by
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?
-
What distribution are you using ?
-
wrote on 12 Mar 2017, 15:42 last edited by papaj 3 Dec 2017, 15:42
Mint 18.1, I tried on Ubuntu 16.04 with the same results.
Both 64bit -
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.
-
wrote on 13 Mar 2017, 13:05 last edited by
I have Qt 5.8
-
Also for the qtwayland module ?
-
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 ?
-
wrote on 22 Mar 2017, 18:51 last edited by
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'
-
What is the version of Qt that is installed on your machine ?
-
wrote on 27 Mar 2017, 15:12 last edited by
5.8 as earlier
12/19