Title: [154563] trunk/Tools
Revision
154563
Author
[email protected]
Date
2013-08-24 21:20:04 -0700 (Sat, 24 Aug 2013)

Log Message

Unreviewed, fix build-webkit --ftl-jit in the case that you have your own llvm directory. We need to
prune 'libgtest' and friends from the llvm build, since WebKit builds its own and none of the llvm
libraries depend on libgtest anyway.

* Scripts/copy-webkitlibraries-to-product-directory:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (154562 => 154563)


--- trunk/Tools/ChangeLog	2013-08-25 04:19:43 UTC (rev 154562)
+++ trunk/Tools/ChangeLog	2013-08-25 04:20:04 UTC (rev 154563)
@@ -1,3 +1,11 @@
+2013-08-24  Filip Pizlo  <[email protected]>
+
+        Unreviewed, fix build-webkit --ftl-jit in the case that you have your own llvm directory. We need to
+        prune 'libgtest' and friends from the llvm build, since WebKit builds its own and none of the llvm
+        libraries depend on libgtest anyway.
+
+        * Scripts/copy-webkitlibraries-to-product-directory:
+
 2013-08-24  Darin Adler  <[email protected]>
 
         RetainPtr lacks move constructor for case when argument is a RetainPtr of a different type

Modified: trunk/Tools/Scripts/copy-webkitlibraries-to-product-directory (154562 => 154563)


--- trunk/Tools/Scripts/copy-webkitlibraries-to-product-directory	2013-08-25 04:19:43 UTC (rev 154562)
+++ trunk/Tools/Scripts/copy-webkitlibraries-to-product-directory	2013-08-25 04:20:04 UTC (rev 154563)
@@ -168,6 +168,7 @@
         opendir (my $dirHandle, $librarySourceDirectory);
         while (my $filename = readdir($dirHandle)) {
             next if $filename !~ /\.a$/;
+            next if $filename =~ /libgtest/;
             print "   Symlink $filename\n";
             my $sourceLibrary = "$librarySourceDirectory/$filename";
             my $targetLibrary = "$libraryTargetDirectory/$filename";
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to