Title: [191755] trunk/Tools
Revision
191755
Author
[email protected]
Date
2015-10-29 14:33:18 -0700 (Thu, 29 Oct 2015)

Log Message

Fix build-jsc on Mac after r191749.

* Scripts/build-jsc:
Use isCMakeBuild to determine if we are building with CMake instead of cmakeBasedPortName.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (191754 => 191755)


--- trunk/Tools/ChangeLog	2015-10-29 21:14:18 UTC (rev 191754)
+++ trunk/Tools/ChangeLog	2015-10-29 21:33:18 UTC (rev 191755)
@@ -1,5 +1,12 @@
 2015-10-29  Alex Christensen  <[email protected]>
 
+        Fix build-jsc on Mac after r191749.
+
+        * Scripts/build-jsc:
+        Use isCMakeBuild to determine if we are building with CMake instead of cmakeBasedPortName.
+
+2015-10-29  Alex Christensen  <[email protected]>
+
         Fix Mac CMake build
         https://bugs.webkit.org/show_bug.cgi?id=150686
 

Modified: trunk/Tools/Scripts/build-jsc (191754 => 191755)


--- trunk/Tools/Scripts/build-jsc	2015-10-29 21:14:18 UTC (rev 191754)
+++ trunk/Tools/Scripts/build-jsc	2015-10-29 21:33:18 UTC (rev 191755)
@@ -94,7 +94,7 @@
     $ftlJIT = 0;
 }
 
-if (cmakeBasedPortName()) {
+if (isCMakeBuild()) {
     $cmakeArgs .= $forceCLoop ? " -DENABLE_JIT=OFF" : " -DENABLE_JIT=ON";
     $cmakeArgs .= $ftlJIT ? " -DENABLE_FTL_JIT=ON" : " -DENABLE_FTL_JIT=OFF";
     # By default we build using all of the available CPUs
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to