Building Qt Desktop for Windows with MinGW

From Qt Wiki
Revision as of 14:11, 14 January 2015 by Maintenance script (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Building Qt Desktop for Windows with MinGW

This chapter will describe some steps to build Qt using a windows host and the MinGW Toolchain. Since there is a 32bit and a 64bit MinGW that can be used to build your Desktop Qt you have to decide if you wanted to build Qt Libraries targetting a x86 (32bit) or a x64 (64bit) machine. Besides there is a possibility to cross build Qt on a 64bit host for a 32bit target and vice versa.

Please look through the prerequisites before you start your work in order to make a definite step building your own Qt. Remark, this guidance here is only for your information. Any hints and comments you can read here are provided to help you to make your own steps with opensource software. There are many more possibilities to do the work. The below build process is only tested with Qt 4.7.4 on a windows 7 ×64 host.

Even so this guide has been created some time ago it is still applicable for Qt4. Only a few adaptations are required concerning the references to MinGW compilers. This has been tested on 64 bit windows 7 system for Qt 4.8.4 source building Qt for 64 bit targets. MinGW version was 4.7.2.

Additional questions may be posted here [qt.io].

Do I need to build Qt?

Perhaps not. The official Qt SDK installer will work just fine. Follow these steps only if you want to learn how to make a cutom build or if you aim a x64 target.

Required Toolchains

To build Qt on your own windows desktop pc there is no wizzard needed. The main thing you want check is to choose the right toolsets that are able to build Qt from bottom up. Since there are many packages to find on the web you have to manage what package is chosen with caution.

The following list will give an overview on the packages you need for your personal build of Qt opensource.

  • The Qt Opensource Source Package with all the sourcecode
  • a MinGW toolchain
  • or a MinGW64 toolchain
  • a Perl installation
  • a tool to replace text in the makefiles (for the install step only)
  • a mingw32-make replacement to use all the cpu cores for building
  • an application to unzip the tarfiles like 7zip [7-zip.org].

To work with the newly created Qt you need also:

  • QtCreator 2.5 (or similiar, build process will be provided as well later)

Prerequisites

Although the build processes are very similar, please note that the cmd.exe shell build environment is slightly different for the PATH variable to find the right compiler toolchain. However, these tools are needed for both the build processes, 32 and 64bit:

  • Qt source code from here [get.qt.nokia.com]
  • Active Perl from here [downloads.activestate.com]. You need “ActivePerl-5.14.2.1402-MSWin32-x64-295342.msi”. Any other perl might work too, this is the tested version.
  • jom.exe prebuilt from here [releases.qt.io].
  • fart.exe prebuilt from here [sourceforge.net]. You need “fart199b_win32.zip”.

Build Qt with MinGW for a x86 target

This chapter describes on how to build the Qt opensource for a 32bit windows target.

Required toolchain

  • MinGW from the Qt SDK, this is shipped i.e. with the SDK Installer [qt.io]. The toolchain itself runs on 32bit and 64bit windows.
  • The SDK sourcecode used for this tutorial is Qt 4.7.4 (qt-everywhere-opensource-src-4.7.4.zip) and can be found here [ftp.qt.nokia.com].

Filesystem setup

Prepare your filesystem for your own build process. There is a batchfile that can build everything automatically. As soon as there will be a place to download you will be noted.

Prepare a tree that contains the tools and the source trees (replace the c:\ with whatever drive you need). It is recommended not to expand your computers path environment with the tools. Everything will take place in a single cmd.exe windows shell that has a path that fits your needs.

For filesystem setup open windows explorer and create the following folders:

  • set the root to c:\qt-4.7.4\
  • copy the mingw contents of the sdk into c:\qt-4.7.4\mingw32_x86
  • unzip the contents of the qt tar into c:\qt-4.7.4\qt-everywhere-opensource-src-4.7.4
  • install or copy Perl into c:\qt-4.7.4\tools\Perl
  • copy jom.exe into c:\qt-4.7.4\tools\jom
  • copy fart.exe into c:\qt-4.7.4\tools\fart
  • create a build directory for Qt under c:\qt-4.7.4\4.7.4-qt-x86-build
  • step into this build directory and create a file “configure.cache” with the following content (you may want to change for your needs):

Configure your build tree

Open a cmd.exe windows shell, cd into c:\qt-4.7.4\4.7.4-qt-x86-build and type:

After accepting the opensource license the configure command will then prepare qmake and the makefiles needed for the buildprocess.

Build Qt

Instead of mingw32-make we use jom. It is capable of distributing the work over a bunch of cpus being engaged by a Windows operating system. Type:
or other commandline parameters if they fit better for you. After that the build process of Qt starts and you want to have a coffee or two.

jom should finish with some warnings but without any error and you will have a pretty new build of the Qt Desktop library. Keep the shell open to make the next steps.

Installing the libraries.

Installing the newly built libs is not straightforward because there is no “make install” way for the MinGW host. To install the Qt libraries and the tools of it there is some work to be done before.

All the makefiles have “install” rules that install exactly to the folder that was used to build the whole library in. So installing into that folder doesn’t make very much sense. All of the objectfiles still remain, and if you don’t want to rebuild everything in the near future it is just a waste of diskspace. Installing for MinGW needs these install rules to be changed a bit.

For that purpose you copied the fart.exe tool to the tools folder. fart.exe can be used like sed to find and replace text in textfiles. In the already open cmd.exe shell where you built the libs in you want to type the following:

Please note that after INSTALL_ROOT= must not be any character, not even a blank.

This command will change
into
in every makefile and will set the shell variable to an empty string. Someone also could remove the variable at all, but that’s on your decision.

After this jom can make the installation into c:\qt-4.7.4\4.7.4-qt-x86:

Since it is late now, someone probably wants to have a beer or two and wait for the installation to complete. After this there are some steps to do manually:

Create a config file that tells qmake about its new installation path. Create a textfile C:\qt-4.7.4\4.7.4-qt-x86\bin\qt.conf:

For now there is a dazzling new installation of your personal Qt build that can be found on your harddisk under C:\qt-4.7.4\4.7.4-qt-x86. Go ahead and delete the build directory if you don’t need it any more. If you want to be able to debug into the Qt sourcecode you might want to keep the sourcetree alive.

Build Qt with MinGW for a x64 target

This chapter describes on how to build the Qt opensource for a 64bit windows target.

Required toolchain

  • Information about the MinGW can be found on the wiki on MinGW [qt.io] The recommended download site of MinGW-builds provides the different flavors of the compiler.

Filesystem setup

Prepare your filesystem for your own build process. There is a batchfile that can build everything automatically. As soon as there will be a place to download you will be noted.

Prepare a tree that contains the tools and the source trees (replace the c:\ with whatever drive you need). It is recommended not to expand your computers path environment with the tools. Everything will take place in a single cmd.exe windows shell that has a path that fits your needs.

For filesystem setup open windows explorer and create the following folders:

  • set the root to c:\qt-4.7.4\
  • copy the mingw contents of the zip into c:\qt-4.7.4\mingw64_x64
  • unzip the contents of the qt tar into c:\qt-4.7.4\qt-everywhere-opensource-src-4.7.4
  • install or copy Perl into c:\qt-4.7.4\tools\Perl
  • copy jom.exe into c:\qt-4.7.4\tools\jom
  • copy fart.exe into c:\qt-4.7.4\tools\fart
  • create a build directory for Qt under c:\qt-4.7.4\4.7.4-qt-x64-build
  • step into this build directory and create a file “configure.cache” with the following content (you may want to change for your needs):

Do not be irritated when looking at the win32-g++ makespec. This makespec is also capable of building 64bit Qt. The PATH – shell variable does currently only contain the path to MinGW64. So there will be no confusion about the compilers:

Configure your build tree

Open a cmd.exe windows shell, cd into c:\qt-4.7.4\4.7.4-qt-x64-build and type:

After accepting the opensource license the configure command will then prepare qmake and the makefiles needed for the buildprocess.

Build Qt

Instead of mingw32-make we use jom. It is capable of distributing the work over a bunch of cpus being engaged by a Windows operating system. Type:
or other commandline parameters if they fit better for you. After that the build process of Qt starts and you want to have a coffee or two.

jom should finish with some warnings but without any error and you will have a pretty new build of the Qt Desktop library. Keep the shell open to make the next steps.

Installing the libraries.

Installing the newly built libs is not straightforward because there is no “make install” way for the MinGW host. To install the Qt libraries and the tools of it there is some work to be done before.

All the makefiles have “install” rules that install exactly to the folder that was used to build the whole library in. So installing into that folder doesn’t make very much sense. All of the objectfiles still remain, and if you don’t want to rebuild everything in the near future it is just a waste of diskspace. Installing for MinGW needs these install rules to be changed a bit.

For that purpose you copied the fart.exe tool to the tools folder. fart.exe can be used like sed to find and replace text in textfiles. In the already open cmd.exe shell where you built the libs in you want to type the following:

Please note that after INSTALL_ROOT= must not be any character, not even a blank.

This command will change
into
in every makefile and will set the shell variable to an empty string. Someone also could remove the variable at all, but that’s on your decision.

After this jom can make the installation into c:\qt-4.7.4\4.7.4-qt-x64:

Since it is late now, someone probably wants to have a beer or two and wait for the installation to complete. After this there are some steps to do manually:

The dual-target MinGW compiler adds an additional required dll to be copied. Following this guide step by step starting qmake will bring up an error message about missing libwinpthread-1.dll.

Create a config file that tells qmake about its new installation path. Create a textfile C:\qt-4.7.4\4.7.4-qt-x64\bin\qt.conf:

For now there is a dazzling new installation of your personal Qt build that can be found on your harddisk under C:\qt-4.7.4\4.7.4-qt-x64. Go ahead and delete the build directory if you don’t need it any more. If you want to be able to debug into the Qt sourcecode you might want to keep the sourcetree alive.

Building a cross Qt for x86 host and x64 target

Coming soon…

Links and references

Categories: