Qt shadow builds

From Qt Wiki
Revision as of 13:05, 23 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search

h1. How to set up shadow builds on OS X and Linux

Qt has a wonderful option: you can build Qt depending on your need from the same source code in many different flavors.

It come with a -prefix option in its configure script, which will allow you to install Qt in a directory of your choice. E.g. if you want to build a different version of Qt with or without webkit, you can do so by using the -no-webkit option in configure and by defining a different installation path using -prefix.

This way you build different versions of Qt on your development machine from the same source code.

Unfortunately, this option is not available on Windows.

How to set up shadow builds on Windows

While developing for Windows you might want to compile a version of Qt for several different platforms and SDKs. In order to create those different builds of Qt you do not have to copy the whole Qt package or the Qt source. You are able to create multiple Qt builds from a single source tree. Such builds are called shadow builds.

Basically a shadow build is created by calling configure.exe from a different directory.

To make sure that the shadow build compiles correctly it is important that you following these guidelines:
* Required Build tools : Get & Install either MSYS or MSYS2 shell (do not use both, unless you know what you are doing).
' Toolchains/Compilers : Either get Visual Studio, or, MinGW, or, "MinGW-w64":https://wiki.qt.io/MinGW-64-bit toolchains, (or get all of them, based on your need & target), separately from their official websites & install, or, get & Install MinGW-w64 (64bit & 32bit) toolchains inside MSYS2-shell. And add their directory location in the PATH environment variable.
'
Option-A : Either get Perl, Ruby, Python, msysgit, 7zip separately from their official site and install into separate directories, and add each separate directories into the PATH. ("ActivePerl":http://www.activestate.com/Products/activeperl/index.mhtml , "StrawberryPerl":http://strawberryperl.com/ , etc are a popular distribution of Perl on Windows).
' Option-B : or, get & install Perl, Ruby, Python, git, 7pzip, etc inside MSYS2-shell with just one command and add just one directory location in PATH.
'
Get & install other build related tools, SDKs, dependencies, etc which you need for your target platform(s). And add their directory location in PATH and also add other build related environment variables (like INCLUDE, LIB, LIBPATH, DEV, QTDIR, etc). See Qt build related other articles. For example, you may need support for "OpenSSL":, "ICU":https://wiki.qt.io/Compiling-ICU (Unicode), etc.
* Bring %SystemRoot% location (its $SYSTEMROOT inside cygwin/bash/msys2) in beginning of PATH:
If you are using Cmd-Shell, run this command:

<br />set PATH=&amp;#37;SystemRoot&amp;amp;#37;;&amp;#37;SystemRoot&amp;amp;#37;32;&amp;#37;PATH&amp;amp;#37;<br />


' If you are using MSYS2-Shell, run this command:

<br />windows2unix() &amp;#123; local pathPcs=() split pathTmp IFS=&amp;#92;&amp;#59;&amp;#59; read -ra split &amp;#60;&amp;#60;&amp;#60; &amp;#34;&amp;#36;'''&amp;#34;&amp;#59; for pathTmp in &amp;#34;&amp;#36;&amp;#123;split&amp;amp;#91;

&#93;,&#125;&#34;&#59; do pathPcs&amp;#43;=( &#34;&#47;&#36;&#123;pathTmp&amp;#47;&#47;&#43;(&#91;:&#92;&#92;&#93;)&#47;&#47;&#125;&#34; )&#59; done&amp;#59; echo "&#36;&#123;pathPcs&amp;#91;&#93;&#125;&#34;&#59; &#125;&#59; systemrootP=&#36;(windows2unix &#34;&#36;SYSTEMROOT&amp;#34;)&#59; export PATH="&#36;systemrootP:&#36;systemrootP/system32:&#36;PATH&quot;

<br />'''* If you are using jom, fart, etc tools then:<br />''' If you are using Cmd-Shell, run this command:<br />


set PATH=C:;C:;&#37;PATH&amp;#37;

<br />'''''' If you are using [[MSYS2]]-Shell, run this command:<br />


export PATH="/c/Qt/tools/jom:/c/Qt/tools/fart:&#36;PATH&quot;

<br />'''* set the PATH<br />''' If you are using Cmd-shell, then adjust &amp; run/execute below command:<br />


set PATH=C:-w64\64bit\bin;C:-perl\64bit\perl\bin;C:-perl\64bit\c\bin;C:perl\64bit\c\x86_64-w64-mingw32\bin;C:27;C:64bit\bin;&#37;PATH&amp;#37;

<br />'''''' If you are using MSYS2-shell (or MSYS-shell), then adjust &amp; run/execute below command:<br />


export PATH="/c/msys2/mingw64/bin:/c/msys2/usr/bin:&#36;PATH&quot;

<br />* The original Qt source package must be left untouched</s> the &quot;configure&amp;quot; must never have been run inside the source tree directory.<br />'''''' For example, lets assume, we are handling with Qt version number &amp;#37;VERSION&amp;amp;#37;, where &amp;#37;VERSION&amp;amp;#37; variable contains version number 5. So we will place our source files in this directory: C:&amp;#37;VERSION&amp;amp;#37;_src which means C:5_src (/c/Qt/Qt5_src).<br />'''* To set version number run/execute below command, for Cmd-shell:<br />


set VERSION=5

<br />'''* To set version number run/execute below command, for MSYS2-shell:<br />


export VERSION=5

<br />'''* If you are using windows Cmd-shell, then you need to run/execute similar commands<br />


mkdir C:mkdir C:&#37;VERSION&amp;#37;_src

<br />'''* If you are using [[MSYS2]]-shell or MSYS shell, then you need to run/execute similar commands<br />


mkdir /c/Qt
mkdir /c/Qt/Qt&amp;#36;{VERSION}_src

<br />* With Qt5, the code has to be checked out of the git repository, otherwise the out of source build will fail as syncqt is not executed.<br />* Avoid using &quot;release&amp;quot; and &quot;debug&amp;quot; in the path to the shadow build directory. (This is an internal limitation of the build system.)<br />* So lets assume you have installed Qt in C:&amp;#37;VERSION&amp;amp;#37;_src and you want to create a shadow build in C:-Qt5-shadow:<br />'''''' Make sure the environment variables for your build &amp; target platform related compiler/toolchains, tools, dependencies, etc are set.<br />'''* For example, in Cmd-shell:<br />


set LANG=en

<br />'''* For example, in MSYS2-shell:<br />


export LANG=en

<br />'''* Visual Studio includes vcvars32.bat for that purpose - or simply use the &quot;Visual Studio Command Prompt&amp;quot; from the Start menu.<br />* Now navigate and GO INSIDE into your shadow build directory and run the &quot;configure&amp;quot;:<br />''' If you are using Cmd-shell:<br />


cd C:-Qt5-shadow
C:&#37;VERSION&amp;#37;_src\configure.exe -xplatform wincewm50pocket-msvc2005 -prefix &#37;INSTALLDIR&amp;#37;

<br /> Adjust above command for your target platform, above is for building Qt5 for Windows CE platform.<br />'''''' If you are using MSYS2-shell (or MSYS-shell) :<br />


cd /c/Qt/mobile-Qt5-shadow
/c/Qt/Qt&amp;#36;{VERSION}_src\configure.exe -xplatform wincewm50pocket-msvc2005 -prefix &#36;INSTALLDIR

<br /> Adjust above command for your target platform, above is for building Qt5 for Windows CE platform.<br />* Finally, to build the shadow build, you may use nmake or jom or mingw32-make. In below example, we are showing command for nmake only:<br />


nmake

* That's all. You have successfully created a shadow build of Qt inside C:-Qt5-shadow.
* Now you can call "nmake install&quot; and get a clean installation of Qt inside INSTALLDIR.