Rebuilding-Qt4-configure.exe: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
=How to rebuild configure.exe for Qt 4.8.x=
[[Category:Developing_Qt]]


Attention! Please contact the configure.exe rebuild master before pushing any new configure.exe builds.<br /> Who that is, can be seen on the [[Commit Policy|commit policy page]].
= How to rebuild configure.exe for Qt 4.8.x =


You will need the following:
Attention! Please contact the configure.exe rebuild master before pushing any new configure.exe builds.<br />Who that is, can be seen on the &quot;commit policy page&amp;quot;:Commit_Policy.


* Visual Studio
You will need the following:<br />* Visual Studio<br />* a Qt 4 checkout (e.g. in qt\src)<br />* a Qt 4 build (e.g. in qt\build)
* a Qt 4 checkout (e.g. in qt\src)
* a Qt 4 build (e.g. in qt\build)


The following assumes that you have the Qt sources in a directory named qt\src and its build directory in qt\build.
The following assumes that you have the Qt sources in a directory named qt\src and its build directory in qt\build.


==Visual Studio 2005 2008==
== Visual Studio 2005 - 2008 ==


Open a Visual Studio Command Prompt for the x86 platform and run the following commands:
Open a Visual Studio Command Prompt for the x86 platform and run the following commands:
<code>cd qt\build<br />md tools\configure<br />cd tools\configure<br />qmake ..nmake</code>


If the build runs successfully, the new configure.exe is in the '''source''' directory of Qt.
If the build runs successfully, the new configure.exe is in the '''source''' directory of Qt.


==Visual Studio 2012 and newer==
== Visual Studio 2012 and newer ==
 
For these versions we must ensure that configure.exe still runs on Windows XP. This is not the case if you use the default build environment!<br /> (For details about targeting Windows XP see [http://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx this article] ''[blogs.msdn.com]'')
 
To set up the correct build environment follow these steps:


* Open a Visual Studio Command Prompt for the x86 platform
For these versions we must ensure that configure.exe still runs on Windows XP. This is not the case if you use the default build environment!<br />(For details about targeting Windows XP see &quot;this article&amp;quot;:http://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx)
* Locate the Windows <span class="caps">SDK</span> 7.1A. It’s usually installed in “C:\Program Files (x86)\Microsoft <span class="caps">SDK</span>s\Windows\v7.1A”.
* Execute the following commands in your shell:


Now build configure.exe like it’s described in the ''Visual Studio 2005-2008'' section above.
To set up the correct build environment follow these steps:<br />* Open a Visual Studio Command Prompt for the x86 platform<br />* Locate the Windows SDK 7.1A. It's usually installed in &quot;C:Files (x86)SDKs\Windows\v7.1A&amp;quot;.<br />* Execute the following commands in your shell:


===Categories:===
<code>:: adjust the following path according to your installation<br />set WINSDKDIR=C:Files (x86)SDKs\Windows\v7.1A<br />set PATH=WINSDKDIR;PATH<br />set LIB=WINSDKDIR;LIB<br />set INCLUDE=WINSDKDIR;INCLUDE<br />set CL=/D_USING_V110_SDK71_<br />set LINK=/SUBSYSTEM:CONSOLE,5.01<br /></code>


* [[:Category:Developing Qt|Developing_Qt]]
Now build configure.exe like it's described in the ''Visual Studio 2005-2008'' section above.

Revision as of 06:18, 24 February 2015


How to rebuild configure.exe for Qt 4.8.x

Attention! Please contact the configure.exe rebuild master before pushing any new configure.exe builds.
Who that is, can be seen on the "commit policy page&quot;:Commit_Policy.

You will need the following:
* Visual Studio
* a Qt 4 checkout (e.g. in qt\src)
* a Qt 4 build (e.g. in qt\build)

The following assumes that you have the Qt sources in a directory named qt\src and its build directory in qt\build.

Visual Studio 2005 - 2008

Open a Visual Studio Command Prompt for the x86 platform and run the following commands:

cd qt\build<br />md tools\configure<br />cd tools\configure<br />qmake ..nmake

If the build runs successfully, the new configure.exe is in the source directory of Qt.

Visual Studio 2012 and newer

For these versions we must ensure that configure.exe still runs on Windows XP. This is not the case if you use the default build environment!
(For details about targeting Windows XP see "this article&quot;:http://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx)

To set up the correct build environment follow these steps:
* Open a Visual Studio Command Prompt for the x86 platform
* Locate the Windows SDK 7.1A. It's usually installed in "C:Files (x86)SDKs\Windows\v7.1A&quot;.
* Execute the following commands in your shell:

:: adjust the following path according to your installation<br />set WINSDKDIR=C:Files (x86)SDKs\Windows\v7.1A<br />set PATH=WINSDKDIR;PATH<br />set LIB=WINSDKDIR;LIB<br />set INCLUDE=WINSDKDIR;INCLUDE<br />set CL=/D_USING_V110_SDK71_<br />set LINK=/SUBSYSTEM:CONSOLE,5.01<br />

Now build configure.exe like it's described in the Visual Studio 2005-2008 section above.