Title: [149426] branches/dfgFourthTier/Tools
- Revision
- 149426
- Author
- [email protected]
- Date
- 2013-04-30 22:49:57 -0700 (Tue, 30 Apr 2013)
Log Message
fourthTier: Use hw.availcpu instead of hw.ncpu, and configure LLVM with --enable-zlib=no
Rubber stamped by Mark Rowe.
* Scripts/copy-webkitlibraries-to-product-directory:
Modified Paths
Diff
Modified: branches/dfgFourthTier/Tools/ChangeLog (149425 => 149426)
--- branches/dfgFourthTier/Tools/ChangeLog 2013-05-01 05:48:45 UTC (rev 149425)
+++ branches/dfgFourthTier/Tools/ChangeLog 2013-05-01 05:49:57 UTC (rev 149426)
@@ -1,3 +1,11 @@
+2013-04-30 Filip Pizlo <[email protected]>
+
+ fourthTier: Use hw.availcpu instead of hw.ncpu, and configure LLVM with --enable-zlib=no
+
+ Rubber stamped by Mark Rowe.
+
+ * Scripts/copy-webkitlibraries-to-product-directory:
+
2013-04-21 Filip Pizlo <[email protected]>
fourthTier: tandem WebKit and LLVM builds should ./configure LLVM if needed
Modified: branches/dfgFourthTier/Tools/Scripts/copy-webkitlibraries-to-product-directory (149425 => 149426)
--- branches/dfgFourthTier/Tools/Scripts/copy-webkitlibraries-to-product-directory 2013-05-01 05:48:45 UTC (rev 149425)
+++ branches/dfgFourthTier/Tools/Scripts/copy-webkitlibraries-to-product-directory 2013-05-01 05:49:57 UTC (rev 149426)
@@ -128,14 +128,11 @@
if (!-e "Makefile.config") {
print("Configuring LLVM.\n");
- (system("./configure --enable-optimized=yes --enable-backtraces=no --enable-targets=x86_64 --enable-libcpp=yes")==0) or die;
+ (system("./configure --enable-optimized=yes --enable-backtraces=no --enable-targets=x86_64 --enable-libcpp=yes --enable-zlib=no")==0) or die;
}
print("Building LLVM.\n");
- my $numCPUString = `sysctl hw.ncpu`;
- $numCPUString =~ /: /;
- my $numCPUs = $';
- (system("make -j $numCPUs") == 0) or die;
+ (system("make -j `sysctl -n hw.availcpu`") == 0) or die;
chdirWebKit();
my $ownLLVMBuildMode = "";
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes