Compile Qt 5.7.0 on Ubuntu16.04(编译,安装,使用)

Compile Qt 5.7.0 on Ubuntu16.04

Refer to:

http://doc.qt.io/qt-5/linux.html

qtbase/src/plugins/platforms/xcb/README

http://doc.qt.io/qt-5/linux-requirements.html

http://doc.qt.io/qt-5/linux-building.html

 

[1] sudo apt-get install build-essential libgl1-mesa-dev

[2] sudo apt-get install libxcb1 libxcb1-dev libx11-xcb1 libx11-xcb-dev libxcb-keysyms1 libxcb-keysyms1-dev libxcb-image0 libxcb-image0-dev libxcb-shm0 libxcb-shm0-dev libxcb-icccm4 libxcb-icccm4-dev libxcb-sync0 libxcb-sync0-dev libxcb-xfixes0-dev libxrender-dev libxcb-shape0-dev libxcb-randr0-dev libxcb-render-util0 libxcb-render-util0-dev libxcb-glx0-dev libxcb-xinerama0-dev

This is actually just my experience with the same problem in Ubuntu. The libraries as given by Miss Blit are correct, except from libxcb-sync0 libxcb-sync0-dev, these should be libxcb-sync1 libxcb-sync-dev.

 

[3]  sudo apt-get install libfontconfig1-dev libfreetype6-dev libx11-dev libxext-dev libxfixes-dev libxi-dev libxrender-dev libxcb1-dev libx11-xcb-dev libxcb-glx0-dev

[4] ./configure -opensource -confirm-license -nomake tests -nomake examples -qt-xcb

[5] make -j4

[6] sudo make install

[7] In .profile (if your shell is bash, ksh, zsh or sh), add the following lines:

export PATH=/usr/local/Qt-%VERSION%/bin:$PATH

你可能感兴趣的:(Compile Qt 5.7.0 on Ubuntu16.04(编译,安装,使用))