Qt-5-Alpha-building-instructions
Jump to navigation
Jump to search
English Български
h1. Qt 5 Alpha building instructions
First you need to download the Qt 5 Alpha release from Qt-5-Alpha. See also Building_Qt_5_from_Git for additional information about package depencies and pitfalls.
Required build tools
- Perl 5.8 or later
- Python 2.7 or later
- C++ compiler supporting the C++98 standard
Dependencies
- openssl is required to use SSL sockets or https, optional otherwise
- xcb or wayland required for linux - see "qtbase/src/plugins/platforms/xcb/README":https://qt.gitorious.org/qt/qtbase/blobs/master/src/plugins/platforms/xcb/README for xcb package list.
Suggested configurations
- To develop applications using Qt 5: "-opensource -confirm-license -nomake tests -prefix $PWD/qtbase" (Unix) or "-opensource -confirm-license -nomake tests -prefix %CD%" (Windows)
- To develop Qt 5 itself or run unit tests: "-opensource -confirm-license -developer-build"
- To make an optimised release build of Qt 5: "-opensource -confirm-license -nomake tests -release
prefix $PWD/qtbase"
Linux XCB (Ubuntu 11.10)
h2. Build steps
- Install dependencies of Qt 4 "sudo apt-get build-dep libqt4-dev"
- Install xcb dependencies "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"
- cd to the directory where you extracted the tarball and run ./configure (with the options suggested above)
- Run "./build" and wait for some time. If you have multiple cores, use ./build
j <number of cores> to speed up the build process
Linux XCB (Ubuntu 12.04)
h2. Build steps
- Install dependencies of Qt 4 "sudo apt-get build-dep libqt4-dev"
- Install additional dependencies "sudo apt-get install gperf bison" (needed to compile QtWebkit)
- Install xcb dependencies "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"
- cd to the directory where you extracted the tarball and run ./configure (with the options suggested above)
- Run "./build" and wait for some time. If you have multiple cores, use ./build
j <number of cores> to speed up the build process
Mac OSX (10.7, XCode 4.3)
h2. Build steps
- Ensure that you have Perl, Python, Bison, Flex and gperf installed
- cd to the directory where you extracted the tarball and run ./configure (with the options suggested above)
- If you are on 10.6 and/or using an older XCode, you might run into problems building QtWebKit in the alpha package. The best is then to simply delete the qtwebkit folder and qtwebkit.pri, and the build process will simply skip over modules with qtwebkit dependencies. Proper support for 10.6 and older XCodes will come in the Beta release.
- Run "./build" and wait for some time. If you have multiple cores, use ./build
j <number of cores> to speed up the build process
Windows 7 / MSVC
h2. Build steps
- Install "Perl":http://strawberryperl.com/, "Python":http://www.python.org/download/releases/3.2.2/, and "OpenSSL":http://www.slproweb.com/products/Win32OpenSSL.html if needed. Note that OpenSSL comes in Win32 and Win64 builds, you need to install the one you want to build for.
- Start an MSVC command prompt (Win32 or Win64)
- Ensure perl, python and openssl are added to your PATH
- Ensure openssl\include is added to the INCLUDE environment variable
- Ensure openssl\lib is added to the LIB environment variable
- cd to the directory where you unzipped the release and run configure with the options suggested above