Title: [187090] branches/safari-601.1-branch/Source/WebKit
Revision
187090
Author
matthew_han...@apple.com
Date
2015-07-20 22:27:42 -0700 (Mon, 20 Jul 2015)

Log Message

Merge r187027. rdar://problem/21882777

Modified Paths

Diff

Modified: branches/safari-601.1-branch/Source/WebKit/ChangeLog (187089 => 187090)


--- branches/safari-601.1-branch/Source/WebKit/ChangeLog	2015-07-21 05:27:39 UTC (rev 187089)
+++ branches/safari-601.1-branch/Source/WebKit/ChangeLog	2015-07-21 05:27:42 UTC (rev 187090)
@@ -1,3 +1,20 @@
+2015-07-20  Matthew Hanson  <matthew_han...@apple.com>
+
+        Merge r187027. rdar://problem/21882777
+
+    2015-07-20  Brent Fulgham  <bfulg...@apple.com>
+
+            [Win] Certain Debug builds can take close to 3 hours to link
+            https://bugs.webkit.org/show_bug.cgi?id=147114
+            <rdar://problem/21882777>
+
+            Reviewed by Tim Horton.
+
+            Correct the 64-bit DebugSuffix link target to match the 32-bit version.
+
+            * WebKit.vcxproj/WebKit/WebKit.vcxproj: Turn off the REF and ICF
+            flags for the 64-bit DebugSuffix link target.
+
 2015-07-09  Per Arne Vollan  <pe...@outlook.com>
 
         [Win] Add memory pressure handler.

Modified: branches/safari-601.1-branch/Source/WebKit/WebKit.vcxproj/WebKit/WebKit.vcxproj (187089 => 187090)


--- branches/safari-601.1-branch/Source/WebKit/WebKit.vcxproj/WebKit/WebKit.vcxproj	2015-07-21 05:27:39 UTC (rev 187089)
+++ branches/safari-601.1-branch/Source/WebKit/WebKit.vcxproj/WebKit/WebKit.vcxproj	2015-07-21 05:27:42 UTC (rev 187090)
@@ -233,6 +233,9 @@
     <Link />
     <ClCompile />
     <Link />
+    <Link>
+      <OptimizeReferences>false</OptimizeReferences>
+    </Link>
   </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Link />
@@ -287,6 +290,11 @@
       <EnableCOMDATFolding>false</EnableCOMDATFolding>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|x64'">
+    <Link>
+      <EnableCOMDATFolding>false</EnableCOMDATFolding>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClCompile Include="..\..\Storage\StorageAreaImpl.cpp" />
     <ClCompile Include="..\..\Storage\StorageAreaSync.cpp" />
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to