Title: [232573] trunk
Revision
232573
Author
[email protected]
Date
2018-06-06 22:09:23 -0700 (Wed, 06 Jun 2018)

Log Message

[Xcode] Opt out of the New Build System
https://bugs.webkit.org/show_bug.cgi?id=186380

Reviewed by Alexey Proskuryakov.

.:

* WebKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: Use the Legacy Build System.

Tools:

* Scripts/webkitdirs.pm:
(XcodeOptions): Have -UseNewBuildSystem=NO passed to xcodebuild.

Modified Paths

Diff

Modified: trunk/ChangeLog (232572 => 232573)


--- trunk/ChangeLog	2018-06-07 04:21:21 UTC (rev 232572)
+++ trunk/ChangeLog	2018-06-07 05:09:23 UTC (rev 232573)
@@ -1,5 +1,14 @@
 2018-06-06  Dan Bernstein  <[email protected]>
 
+        [Xcode] Opt out of the New Build System
+        https://bugs.webkit.org/show_bug.cgi?id=186380
+
+        Reviewed by Alexey Proskuryakov.
+
+        * WebKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: Use the Legacy Build System.
+
+2018-06-06  Dan Bernstein  <[email protected]>
+
         Check in a file created by the Xcode 10 beta.
 
         * WebKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: Added.

Modified: trunk/Tools/ChangeLog (232572 => 232573)


--- trunk/Tools/ChangeLog	2018-06-07 04:21:21 UTC (rev 232572)
+++ trunk/Tools/ChangeLog	2018-06-07 05:09:23 UTC (rev 232573)
@@ -1,3 +1,13 @@
+2018-06-06  Dan Bernstein  <[email protected]>
+
+        [Xcode] Opt out of the New Build System
+        https://bugs.webkit.org/show_bug.cgi?id=186380
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Scripts/webkitdirs.pm:
+        (XcodeOptions): Have -UseNewBuildSystem=NO passed to xcodebuild.
+
 2018-06-06  Antoine Quint  <[email protected]>
 
         Rename color-filter to -apple-color-filter and do not expose it to Web content

Modified: trunk/Tools/Scripts/webkitdirs.pm (232572 => 232573)


--- trunk/Tools/Scripts/webkitdirs.pm	2018-06-07 04:21:21 UTC (rev 232572)
+++ trunk/Tools/Scripts/webkitdirs.pm	2018-06-07 05:09:23 UTC (rev 232573)
@@ -850,6 +850,7 @@
     determineXcodeSDK();
 
     my @options;
+    push @options, "-UseNewBuildSystem=NO";
     push @options, "-UseSanitizedBuildSystemEnvironment=YES";
     push @options, ("-configuration", $configuration);
     push @options, ("-xcconfig", sourceDir() . "/Tools/asan/asan.xcconfig", "ASAN_IGNORE=" . sourceDir() . "/Tools/asan/webkit-asan-ignore.txt") if $asanIsEnabled;

Modified: trunk/WebKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings (232572 => 232573)


--- trunk/WebKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings	2018-06-07 04:21:21 UTC (rev 232572)
+++ trunk/WebKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings	2018-06-07 05:09:23 UTC (rev 232573)
@@ -2,6 +2,8 @@
 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 <plist version="1.0">
 <dict>
+	<key>BuildSystemType</key>
+	<string>Original</string>
 	<key>IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded</key>
 	<false/>
 </dict>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to