Title: [167389] trunk/Tools
Revision
167389
Author
commit-qu...@webkit.org
Date
2014-04-16 14:58:23 -0700 (Wed, 16 Apr 2014)

Log Message

[Win] run-_javascript_core-tests fails to run.
https://bugs.webkit.org/show_bug.cgi?id=131761

Patch by pe...@outlook.com <pe...@outlook.com> on 2014-04-16
Reviewed by Brent Fulgham.

* Scripts/build-jsc: For now, don't try to build bmalloc on Windows.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (167388 => 167389)


--- trunk/Tools/ChangeLog	2014-04-16 21:53:51 UTC (rev 167388)
+++ trunk/Tools/ChangeLog	2014-04-16 21:58:23 UTC (rev 167389)
@@ -1,3 +1,12 @@
+2014-04-16  pe...@outlook.com  <pe...@outlook.com>
+
+        [Win] run-_javascript_core-tests fails to run.
+        https://bugs.webkit.org/show_bug.cgi?id=131761
+
+        Reviewed by Brent Fulgham.
+
+        * Scripts/build-jsc: For now, don't try to build bmalloc on Windows.
+
 2014-04-16  Andres Gomez  <ago...@igalia.com>
 
         [Win] Pass default parameters to cygwin setup wizard

Modified: trunk/Tools/Scripts/build-jsc (167388 => 167389)


--- trunk/Tools/Scripts/build-jsc	2014-04-16 21:53:51 UTC (rev 167388)
+++ trunk/Tools/Scripts/build-jsc	2014-04-16 21:58:23 UTC (rev 167389)
@@ -127,7 +127,9 @@
     chdirWebKit();
 }
 
-buildMyProject("Source/bmalloc", "bmalloc");
+if (!isAppleWinWebKit() && !isWinCairo()) {
+    buildMyProject("Source/bmalloc", "bmalloc");
+}
 buildMyProject("Source/WTF", "WTF");
 buildMyProject("Source/_javascript_Core", "_javascript_Core");
 if (isAppleMacWebKit() && $cli) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to