https://bugs.webkit.org/show_bug.cgi?id=109221
Patch by David Farler <dfarler@apple.com> on 2013-02-09
Reviewed by David Kilzer.
* Scripts/build-webkit: Add options to usage
* Scripts/webkitdirs.pm: Remove --deploy and --devel checks
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@142373
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-02-09 David Farler <dfarler@apple.com>
+
+ 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 <jochen@chromium.org>
[chromium] move context menu data tracking to TestRunner library
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)
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());