https://bugs.webkit.org/show_bug.cgi?id=135655
Reviewed by Mark Rowe.
.:
* Makefile.shared: Export DSYMUTIL_NUM_THREADS.
Tools:
* Scripts/webkitdirs.pm:
(buildXCodeProject): Set before calling xcodebuild.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172174
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-08-06 David Farler <dfarler@apple.com>
+
+ Set DSYMUTIL_NUM_THREADS to the number of logical cores
+ https://bugs.webkit.org/show_bug.cgi?id=135655
+
+ Reviewed by Mark Rowe.
+
+ * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
+
2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
[GTK] Be able to disable gtk2 dependency
endif
endif
+export DSYMUTIL_NUM_THREADS = $(shell sysctl -n hw.activecpu);
+
all:
( $(SET_COLOR_DIAGNOSTICS_ARG); xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} )
+2014-08-06 David Farler <dfarler@apple.com>
+
+ Set DSYMUTIL_NUM_THREADS to the number of logical cores
+ https://bugs.webkit.org/show_bug.cgi?id=135655
+
+ Reviewed by Mark Rowe.
+
+ * Scripts/webkitdirs.pm:
+ (buildXCodeProject): Set before calling xcodebuild.
+
2014-08-06 Adrian Perez de Castro <aperez@igalia.com>
[GTK] Add support for user scripts to WebKitUserContentManager
push(@extraOptions, ("-sdk", "iphonesimulator")) if willUseIOSSimulatorSDKWhenBuilding();
push(@extraOptions, ("-sdk", "iphoneos.internal")) if willUseIOSDeviceSDKWhenBuilding();
+ chomp($ENV{DSYMUTIL_NUM_THREADS} = `sysctl -n hw.activecpu`);
return system "xcodebuild", "-project", "$project.xcodeproj", @extraOptions;
}
dieIfWindowsPlatformSDKNotInstalled() if $willUseVCExpressWhenBuilding;
chomp($project = `cygpath -w "$project"`) if isCygwin();
-
+
my $action = "/build";
if ($clean) {
$action = "/clean";