Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (235411 => 235412)
--- trunk/Source/_javascript_Core/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/_javascript_Core/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,3 +1,9 @@
+2018-08-27 Keith Rollin <[email protected]>
+
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
2018-08-27 Aditya Keerthi <[email protected]>
Consolidate ENABLE_INPUT_TYPE_COLOR and ENABLE_INPUT_TYPE_COLOR_POPOVER
Modified: trunk/Source/_javascript_Core/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/_javascript_Core/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/_javascript_Core/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -192,4 +192,4 @@
WK_USER_LTO_MODE_thin = NO; // Disable LTO for _javascript_ due to <rdar://problem/24543547>
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/ThirdParty/ANGLE/ChangeLog (235411 => 235412)
--- trunk/Source/ThirdParty/ANGLE/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/ThirdParty/ANGLE/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,5 +1,11 @@
2018-08-27 Keith Rollin <[email protected]>
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
+2018-08-27 Keith Rollin <[email protected]>
+
Build system support for LTO
https://bugs.webkit.org/show_bug.cgi?id=187785
<rdar://problem/42353132>
Modified: trunk/Source/ThirdParty/ANGLE/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/ThirdParty/ANGLE/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/ThirdParty/ANGLE/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -95,4 +95,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (235411 => 235412)
--- trunk/Source/ThirdParty/libwebrtc/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,5 +1,11 @@
2018-08-27 Keith Rollin <[email protected]>
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
+2018-08-27 Keith Rollin <[email protected]>
+
Build system support for LTO
https://bugs.webkit.org/show_bug.cgi?id=187785
<rdar://problem/42353132>
Modified: trunk/Source/ThirdParty/libwebrtc/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/ThirdParty/libwebrtc/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/ThirdParty/libwebrtc/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -117,4 +117,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/WTF/ChangeLog (235411 => 235412)
--- trunk/Source/WTF/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WTF/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,3 +1,9 @@
+2018-08-27 Keith Rollin <[email protected]>
+
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
2018-08-27 Aditya Keerthi <[email protected]>
Consolidate ENABLE_INPUT_TYPE_COLOR and ENABLE_INPUT_TYPE_COLOR_POPOVER
Modified: trunk/Source/WTF/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/WTF/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WTF/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -159,4 +159,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/WebCore/ChangeLog (235411 => 235412)
--- trunk/Source/WebCore/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebCore/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,3 +1,9 @@
+2018-08-27 Keith Rollin <[email protected]>
+
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
2018-08-27 Youenn Fablet <[email protected]>
Various IndexDB tests abandon documents
Modified: trunk/Source/WebCore/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/WebCore/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebCore/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -167,4 +167,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/WebCore/PAL/ChangeLog (235411 => 235412)
--- trunk/Source/WebCore/PAL/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebCore/PAL/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,3 +1,9 @@
+2018-08-27 Keith Rollin <[email protected]>
+
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
2018-08-27 Aditya Keerthi <[email protected]>
Consolidate ENABLE_INPUT_TYPE_COLOR and ENABLE_INPUT_TYPE_COLOR_POPOVER
Modified: trunk/Source/WebCore/PAL/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/WebCore/PAL/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebCore/PAL/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -164,4 +164,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/WebInspectorUI/ChangeLog (235411 => 235412)
--- trunk/Source/WebInspectorUI/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebInspectorUI/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,3 +1,9 @@
+2018-08-27 Keith Rollin <[email protected]>
+
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
2018-08-27 Andy Estes <[email protected]>
Teach Web Inspector how to complete keywords for -apple-pay-button-style and -apple-pay-button-type
Modified: trunk/Source/WebInspectorUI/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/WebInspectorUI/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebInspectorUI/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -120,4 +120,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/WebKit/ChangeLog (235411 => 235412)
--- trunk/Source/WebKit/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebKit/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,3 +1,9 @@
+2018-08-27 Keith Rollin <[email protected]>
+
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
2018-08-27 Per Arne Vollan <[email protected]>
[macOS] Block CoreServices in sandbox.
Modified: trunk/Source/WebKit/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/WebKit/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebKit/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -173,4 +173,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (235411 => 235412)
--- trunk/Source/WebKitLegacy/mac/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,3 +1,9 @@
+2018-08-27 Keith Rollin <[email protected]>
+
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
2018-08-27 Aditya Keerthi <[email protected]>
Consolidate ENABLE_INPUT_TYPE_COLOR and ENABLE_INPUT_TYPE_COLOR_POPOVER
Modified: trunk/Source/WebKitLegacy/mac/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/WebKitLegacy/mac/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/WebKitLegacy/mac/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -157,4 +157,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);
Modified: trunk/Source/bmalloc/ChangeLog (235411 => 235412)
--- trunk/Source/bmalloc/ChangeLog 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/bmalloc/ChangeLog 2018-08-28 00:07:07 UTC (rev 235412)
@@ -1,5 +1,11 @@
2018-08-27 Keith Rollin <[email protected]>
+ Unreviewed build fix -- disable LTO for production builds
+
+ * Configurations/Base.xcconfig:
+
+2018-08-27 Keith Rollin <[email protected]>
+
Build system support for LTO
https://bugs.webkit.org/show_bug.cgi?id=187785
<rdar://problem/42353132>
Modified: trunk/Source/bmalloc/Configurations/Base.xcconfig (235411 => 235412)
--- trunk/Source/bmalloc/Configurations/Base.xcconfig 2018-08-27 23:47:40 UTC (rev 235411)
+++ trunk/Source/bmalloc/Configurations/Base.xcconfig 2018-08-28 00:07:07 UTC (rev 235412)
@@ -151,4 +151,4 @@
WK_USER_LTO_MODE_thin = YES_THIN;
WK_USER_LTO_MODE_none = NO;
WK_USER_LTO_MODE_ = $(WK_DEFAULT_LTO_MODE);
-WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_full);
+WK_DEFAULT_LTO_MODE = $(WK_USER_LTO_MODE_none);