Title: [227443] trunk/Tools
Revision
227443
Author
[email protected]
Date
2018-01-23 14:14:41 -0800 (Tue, 23 Jan 2018)

Log Message

[WinCairo] Use 64-bit toolset
https://bugs.webkit.org/show_bug.cgi?id=181979

Patch by Yoshiaki Jitsukawa <[email protected]> on 2018-01-23
Reviewed by Alex Christensen.

Use 64-bit toolset for 64-bit build in order to improve build time.

* Scripts/webkitdirs.pm:
(generateBuildSystemFromCMakeProject):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (227442 => 227443)


--- trunk/Tools/ChangeLog	2018-01-23 21:42:51 UTC (rev 227442)
+++ trunk/Tools/ChangeLog	2018-01-23 22:14:41 UTC (rev 227443)
@@ -1,3 +1,15 @@
+2018-01-23  Yoshiaki Jitsukawa  <[email protected]>
+
+        [WinCairo] Use 64-bit toolset
+        https://bugs.webkit.org/show_bug.cgi?id=181979
+
+        Reviewed by Alex Christensen.
+
+        Use 64-bit toolset for 64-bit build in order to improve build time. 
+
+        * Scripts/webkitdirs.pm:
+        (generateBuildSystemFromCMakeProject):
+
 2018-01-23  Simon Fraser  <[email protected]>
 
         Element with position:fixed stops scrolling at the bottom of the page, but is painted in the right place on Chacos.com.

Modified: trunk/Tools/Scripts/webkitdirs.pm (227442 => 227443)


--- trunk/Tools/Scripts/webkitdirs.pm	2018-01-23 21:42:51 UTC (rev 227442)
+++ trunk/Tools/Scripts/webkitdirs.pm	2018-01-23 22:14:41 UTC (rev 227443)
@@ -2140,6 +2140,7 @@
         }
     } elsif (isAnyWindows() && isWin64()) {
         push @args, '-G "Visual Studio 15 2017 Win64"';
+        push @args, '-DCMAKE_GENERATOR_TOOLSET="host=x64"';
     }
     # Do not show progress of generating bindings in interactive Ninja build not to leave noisy lines on tty
     push @args, '-DSHOW_BINDINGS_GENERATION_PROGRESS=1' unless ($willUseNinja && -t STDOUT);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to