Title: [173768] trunk/WebKitLibraries
Revision
173768
Author
[email protected]
Date
2014-09-19 13:19:57 -0700 (Fri, 19 Sep 2014)

Log Message

[Win] Turn off SSE Instructions for 32-bit Builds
https://bugs.webkit.org/show_bug.cgi?id=136959
<rdar://problem/18375370>

Reviewed by Dean Jackson.

* win/tools/vsprops/common.props: Conditionally exclude the enhanced (SSE) instruction
set when building for 32-bit Windows. Otherwise, continue using SSE.

Modified Paths

Diff

Modified: trunk/WebKitLibraries/ChangeLog (173767 => 173768)


--- trunk/WebKitLibraries/ChangeLog	2014-09-19 18:48:38 UTC (rev 173767)
+++ trunk/WebKitLibraries/ChangeLog	2014-09-19 20:19:57 UTC (rev 173768)
@@ -1,3 +1,14 @@
+2014-09-19  Brent Fulgham  <[email protected]>
+
+        [Win] Turn off SSE Instructions for 32-bit Builds
+        https://bugs.webkit.org/show_bug.cgi?id=136959
+        <rdar://problem/18375370>
+
+        Reviewed by Dean Jackson.
+
+        * win/tools/vsprops/common.props: Conditionally exclude the enhanced (SSE) instruction
+        set when building for 32-bit Windows. Otherwise, continue using SSE.
+
 2014-09-15  [email protected]  <[email protected]>
 
         [WinCairo] Make it easier to enable/disable GStreamer.

Modified: trunk/WebKitLibraries/win/tools/vsprops/common.props (173767 => 173768)


--- trunk/WebKitLibraries/win/tools/vsprops/common.props	2014-09-19 18:48:38 UTC (rev 173767)
+++ trunk/WebKitLibraries/win/tools/vsprops/common.props	2014-09-19 20:19:57 UTC (rev 173768)
@@ -63,6 +63,7 @@
       <StringPooling>false</StringPooling>
       <MinimalRebuild>false</MinimalRebuild>
       <CompileAs>CompileAsCpp</CompileAs>
+      <EnableEnhancedInstructionSet Condition="$(Platform)=='Win32'">NoExtensions</EnableEnhancedInstructionSet>
     </ClCompile>
     <Lib>
       <AdditionalOptions>/ignore:4221 %(AdditionalOptions)</AdditionalOptions>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to