Title: [187027] trunk/Source/WebKit
Revision
187027
Author
[email protected]
Date
2015-07-20 11:51:41 -0700 (Mon, 20 Jul 2015)

Log Message

[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.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (187026 => 187027)


--- trunk/Source/WebKit/ChangeLog	2015-07-20 18:12:56 UTC (rev 187026)
+++ trunk/Source/WebKit/ChangeLog	2015-07-20 18:51:41 UTC (rev 187027)
@@ -1,3 +1,16 @@
+2015-07-20  Brent Fulgham  <[email protected]>
+
+        [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-20  Alex Christensen  <[email protected]>
 
         Resurrect CMake build on Windows.

Modified: trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKit.vcxproj (187026 => 187027)


--- trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKit.vcxproj	2015-07-20 18:12:56 UTC (rev 187026)
+++ trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKit.vcxproj	2015-07-20 18:51:41 UTC (rev 187027)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to