Title: [232448] trunk/Tools
Revision
232448
Author
[email protected]
Date
2018-06-02 17:49:13 -0700 (Sat, 02 Jun 2018)

Log Message

run-jsc should pass the option to use dollar vm by default
https://bugs.webkit.org/show_bug.cgi?id=186170

Reviewed by Yusuke Suzuki.

* Scripts/run-jsc:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (232447 => 232448)


--- trunk/Tools/ChangeLog	2018-06-02 23:34:43 UTC (rev 232447)
+++ trunk/Tools/ChangeLog	2018-06-03 00:49:13 UTC (rev 232448)
@@ -1,3 +1,12 @@
+2018-06-02  Keith Miller  <[email protected]>
+
+        run-jsc should pass the option to use dollar vm by default
+        https://bugs.webkit.org/show_bug.cgi?id=186170
+
+        Reviewed by Yusuke Suzuki.
+
+        * Scripts/run-jsc:
+
 2018-06-02  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r232421.

Modified: trunk/Tools/Scripts/run-jsc (232447 => 232448)


--- trunk/Tools/Scripts/run-jsc	2018-06-02 23:34:43 UTC (rev 232447)
+++ trunk/Tools/Scripts/run-jsc	2018-06-03 00:49:13 UTC (rev 232448)
@@ -50,9 +50,9 @@
 my $jsc;
 if ($debugger) {
     my $debuggerCmd = defined($ENV{"DEBUGGER"}) ? $ENV{"DEBUGGER"} : "lldb";
-    $jsc = $debuggerCmd . " " . File::Spec->catfile(jscProductDir(), "jsc -- ") . "@ARGV";
+    $jsc = $debuggerCmd . " " . File::Spec->catfile(jscProductDir(), "jsc -- --useDollarVM=1") . "@ARGV";
 } else {
-    $jsc = File::Spec->catfile(jscProductDir(), "jsc ") . "@ARGV";
+    $jsc = File::Spec->catfile(jscProductDir(), "jsc --useDollarVM=1") . "@ARGV";
 }
 
 my $dyld = jscProductDir();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to