aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2012-09-18 21:02:32 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-09-21 16:45:06 +0200
commitbe16d21a80cccd341a07740adc30070b17c988b1 (patch)
treeb7e14247cc016f180dd876c47e686a01404a4b14 /README
parent0e1c9d37240480777ddc46344c58de468fe791c9 (diff)
delete build script
the modularized build system is now good enough Change-Id: Idcc3fb2b6d6201ad7ecbb8e91bd257530797762b Reviewed-by: Yuchen Deng <loaden@gmail.com> Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'README')
-rw-r--r--README11
1 files changed, 5 insertions, 6 deletions
diff --git a/README b/README
index e394e040..8d12cfa9 100644
--- a/README
+++ b/README
@@ -45,7 +45,7 @@ HOW TO BUILD QT5
cd <path>/qt-everywhere-opensource-src-<version>
export PATH=$PATH:$PWD/qtbase/bin
./configure -prefix $PWD/qtbase -opensource -nomake tests
- ./build -j 4
+ make -j 4
Windows:
--------
@@ -57,15 +57,14 @@ HOW TO BUILD QT5
cd <path>\qt-everywhere-opensource-src-<version>
set PATH=%PATH%;%CD%\qtbase\bin;
configure -prefix %CD%\qtbase -opensource -nomake tests
- perl build
+ nmake // jom // mingw32-make
For MinGW (gcc version 4.6 or later), ensure that the compiler can
be found in the path.
- The build script will use jom if it's found in the path, which means you can
- use -j <n> options on Windows as well. If not, the /MP option is added to the
- compile options of the Microsoft Visual Studio compiler, to use all available
- cores for batch building.
+ To accelerate the bootstrap of qmake with MSVC, it may be useful to pass
+ "-make-tool jom" on the configure command line. If you do not use jom,
+ adding "/MP" to the CL environment variable is a good idea.
More details follow.