Difference between revisions of "Documentation/Labs/Qt484"

From Slicer Wiki
Jump to: navigation, search
Line 1: Line 1:
* To compile Qt with VS 2012 (VS 11) for 64bit (not quite tested yet..):
+
* To compile Qt with VS 2012 (VS 11) for 64 bit (not quite tested yet..):
  
** Install perl (I used [http://www.activestate.com/activeperl/downloads])
+
** Install perl (I used [http://www.activestate.com/activeperl/downloads] and choose 64 bit version)
  
** Build/install in say <code>C:\Qt</code>.
+
** Build/install in say <code>C:\QtHacked</code>.
 
+
** Augment windows environment PATH with <code>C:\Qt\bin</code>.
+
** Cd into this directory and git clone git://gitorious.org/qt/qt (this gives a version, not sure which, in this case as per 6/19/2013, mkspecs/qconfig.pri provides version info: QT_VERSION = 4.8.5, a prelease?). Alternatively, better?, find zipped file of official release  [http://qt-project.org/downloads].
 
 
** git clone git://gitorious.org/qt/qt (this gives a version, not sure which,in this case as per 6/19/2013, mkspecs/qconfig.pri provides version info: QT_VERSION = 4.8.5, a prelease?). Alternatively, better?, find zipped file of official release  [http://qt-project.org/downloads].
 
  
 
** This is bug [https://bugreports.qt-project.org/browse/QTBUG-31882 Qt 4.8.5 doesn't compile with VC 11, marked P2:important]: you must replace HashSet.h in src\3rdparty\webkit\Source\JavaScriptCore\wtf with [https://bitbucket.org/Vertexwahn/bluego/src/56dbe84212222ec6954d8d327a5e443106bcc447/deploy/BlueGo0.0.4/qt4.8.3vs2012patch/HashSet.h?at=default HashSet.h].
 
** This is bug [https://bugreports.qt-project.org/browse/QTBUG-31882 Qt 4.8.5 doesn't compile with VC 11, marked P2:important]: you must replace HashSet.h in src\3rdparty\webkit\Source\JavaScriptCore\wtf with [https://bitbucket.org/Vertexwahn/bluego/src/56dbe84212222ec6954d8d327a5e443106bcc447/deploy/BlueGo0.0.4/qt4.8.3vs2012patch/HashSet.h?at=default HashSet.h].
  
** Use VS command prompt (use "Developer Command Prompt" (??) or better "x64 Cross Tools" (??))
+
** Use VS command prompt "x64 Cross Tools".
  
** Then paste the following (-mp for multiprocessor use during build).
+
** Then paste the following (-mp for multiprocessor use during build). (Adjust perl path as necessary.)
 
<pre>
 
<pre>
set QTDIR=C:\Qt
+
 
 +
set QTDIR=C:\QtHacked\Qt
 +
set PATH=%QTDIR%\bin;%PATH%
 
set QMAKESPEC=win32-msvc2012
 
set QMAKESPEC=win32-msvc2012
cd %QTDIR%
+
cd /D %QTDIR%\
 +
set PATH=C:\Perl64\bin;%PATH%
 
configure -release -mp -opensource -platform win32-msvc2012
 
configure -release -mp -opensource -platform win32-msvc2012
 
</pre>
 
</pre>
Then
+
Then go brew a pot of coffee. If something fails at this point, you probably didn't install "Update 2" for VS 2012.
 
<pre>
 
<pre>
 
nmake
 
nmake
 
</pre>
 
</pre>

Revision as of 15:18, 20 June 2013

Home < Documentation < Labs < Qt484
  • To compile Qt with VS 2012 (VS 11) for 64 bit (not quite tested yet..):
    • Install perl (I used [1] and choose 64 bit version)
    • Build/install in say C:\QtHacked.
    • Cd into this directory and git clone git://gitorious.org/qt/qt (this gives a version, not sure which, in this case as per 6/19/2013, mkspecs/qconfig.pri provides version info: QT_VERSION = 4.8.5, a prelease?). Alternatively, better?, find zipped file of official release [2].
    • Use VS command prompt "x64 Cross Tools".
    • Then paste the following (-mp for multiprocessor use during build). (Adjust perl path as necessary.)

set QTDIR=C:\QtHacked\Qt
set PATH=%QTDIR%\bin;%PATH%
set QMAKESPEC=win32-msvc2012
cd /D %QTDIR%\
set PATH=C:\Perl64\bin;%PATH%
configure -release -mp -opensource -platform win32-msvc2012

Then go brew a pot of coffee. If something fails at this point, you probably didn't install "Update 2" for VS 2012.

nmake