From 747ab86acec5c2662a2631985762d468891d6801 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20Br=C3=BCning?= <michael.bruning@digia.com>
Date: Fri, 5 Sep 2014 11:36:33 +0200
Subject: [PATCH] [Win64] Do not skip 64 bit builds on Windows.

Chromium has enabled this in the 37 based branch and it worked
with Qt WebEngine as well.

Change-Id: Idb1f9a2133be645cd044c9f0163cc87f6ae8e474
Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
---
 tools/qmake/mkspecs/features/functions.prf | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index 44ed4f9e6..3ee4518c9 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -1,10 +1,7 @@
 defineTest(isPlatformSupported) {
   static: return(false)
   osx:lessThan(QMAKE_XCODE_VERSION, 5): return(false)
-  win32 {
-    equals(QT_ARCH, x86_64): return(false)
-    !contains(QT_CONFIG, angle): return(false)
-  }
+  win32: !contains(QT_CONFIG, angle): return(false)
 
   linux-g++|win32-msvc2013|macx-clang: return(true)
   return(false)
@@ -112,12 +109,6 @@ defineReplace(findOrBuildNinja) {
     win32: out = $$system_path($${out}.exe)
 
     # If we did not find ninja, then we bootstrap it.
-    !exists($$out) {
-        contains(DEFINES, WIN64) {
-          system("python $$dirname(out)/bootstrap.py --x64")
-        } else {
-          system("python $$dirname(out)/bootstrap.py")
-        }
-    }
+    !exists($$out): system("python $$dirname(out)/bootstrap.py")
     return($$out)
 }
-- 
GitLab