Changes between Version 28 and Version 29 of BuildingQtOnWindows


Ignore:
Timestamp:
May 5, 2010 7:01:53 AM (14 years ago)
Author:
jocelyn.turcotte@nokia.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingQtOnWindows

    v28 v29  
    3030
    3131 * If you want to compile using multiple cores:
    32    * On MinGW you can try {{{set MAKE_COMMAND=mingw32-make -j%NUMBER_OF_PROCESSORS%}}}.[[BR]] If this do not work you might have to Ctrl-C {{{build-webkit}}}'s execution, go in the WebKitBuild\Release\ directory and run {{{mingw32-make -C WebCore -f Makefile.Release -j%NUMBER_OF_PROCESSORS% && mingw32-make}}}
    33    * On MSVC use the CL environment variable along with the /MP switch: {{{set CL= /MP}}}
     32   * On MinGW you can try {{{set MAKE_COMMAND=mingw32-make -j%NUMBER_OF_PROCESSORS%}}}.[[BR]] If this do not work you might have to Ctrl-C {{{build-webkit}}}'s execution, go in the WebKitBuild\Release\ directory and run:
     33{{{
     34mingw32-make -C JavaScriptCore -f Makefile.Release -j%NUMBER_OF_PROCESSORS% && mingw32-make -C WebCore -f Makefile.Release -j%NUMBER_OF_PROCESSORS% && mingw32-make
     35}}}
     36   * On MSVC use the CL environment variable along with the /MP switch:
     37{{{
     38set CL= /MP
     39}}}
    3440 * If you can't access HTTPS pages and you compiled Qt from sources, make sure that you configured it with OpenSSL support. You will need the non-light version of [http://www.slproweb.com/products/Win32OpenSSL.html Win32 OpenSSL] libraries.
    3541 * If you haven't set up your PATH already to include the GnuWin32 packages then you may want to execute the following command: {{{set PATH=C:\GnuWin32\bin;C:\Perl\bin;%PATH%}}} Provided that the GnuWin32 packages are installed in {{{C:\GnuWin32\bin}}} and Perl in {{{C:\Perl\bin}}}.