Title: [142373] trunk/Tools
Revision
142373
Author
[email protected]
Date
2013-02-09 11:09:03 -0800 (Sat, 09 Feb 2013)

Log Message

build-webkit: document sdk, debug, release, device, and simulator options
https://bugs.webkit.org/show_bug.cgi?id=109221

Patch by David Farler <[email protected]> on 2013-02-09
Reviewed by David Kilzer.

* Scripts/build-webkit: Add options to usage
* Scripts/webkitdirs.pm: Remove --deploy and --devel checks

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (142372 => 142373)


--- trunk/Tools/ChangeLog	2013-02-09 19:05:20 UTC (rev 142372)
+++ trunk/Tools/ChangeLog	2013-02-09 19:09:03 UTC (rev 142373)
@@ -1,3 +1,13 @@
+2013-02-09  David Farler  <[email protected]>
+
+        build-webkit: document sdk, debug, release, device, and simulator options
+        https://bugs.webkit.org/show_bug.cgi?id=109221
+
+        Reviewed by David Kilzer.
+
+        * Scripts/build-webkit: Add options to usage
+        * Scripts/webkitdirs.pm: Remove --deploy and --devel checks
+
 2013-02-09  Jochen Eisinger  <[email protected]>
 
         [chromium] move context menu data tracking to TestRunner library

Modified: trunk/Tools/Scripts/build-webkit (142372 => 142373)


--- trunk/Tools/Scripts/build-webkit	2013-02-09 19:05:20 UTC (rev 142372)
+++ trunk/Tools/Scripts/build-webkit	2013-02-09 19:09:03 UTC (rev 142373)
@@ -108,7 +108,11 @@
 Usage: $programName [options] [options to pass to build system]
   --help                            Show this help message
   --clean                           Cleanup the build directory
-  --debug                           Compile in debug mode
+  --debug                           Compile with Debug configuration
+  --release                         Compile with Release configuration
+  --sdk=<sdk>                       Use a specific Xcode SDK (iOS and Mac only)
+  --device                          Use the current iphoneos.internal SDK (iOS only)
+  --simulator                       Use the current iphonesimulator SDK (iOS only)
   --gyp                             Use GYP-generated project files
   --coverage                        Enable Code Coverage support (Mac only)
 

Modified: trunk/Tools/Scripts/webkitdirs.pm (142372 => 142373)


--- trunk/Tools/Scripts/webkitdirs.pm	2013-02-09 19:05:20 UTC (rev 142372)
+++ trunk/Tools/Scripts/webkitdirs.pm	2013-02-09 19:09:03 UTC (rev 142373)
@@ -590,13 +590,13 @@
 
     for my $i (0 .. $#ARGV) {
         my $opt = $ARGV[$i];
-        if ($opt =~ /^--debug$/i || $opt =~ /^--devel/i) {
+        if ($opt =~ /^--debug$/i) {
             splice(@ARGV, $i, 1);
             $passedConfiguration = "Debug";
             $passedConfiguration .= "_Cairo_CFLite" if (isWinCairo() && isCygwin());
             return;
         }
-        if ($opt =~ /^--release$/i || $opt =~ /^--deploy/i) {
+        if ($opt =~ /^--release$/i) {
             splice(@ARGV, $i, 1);
             $passedConfiguration = "Release";
             $passedConfiguration .= "_Cairo_CFLite" if (isWinCairo() && isCygwin());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to