From: keith_miller@apple.com Date: Sun, 3 Jun 2018 00:49:13 +0000 (+0000) Subject: run-jsc should pass the option to use dollar vm by default X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=6ae4328d7a9b8c5631c4984be2ca49be42539893;ds=sidebyside 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: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@232448 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Tools/ChangeLog b/Tools/ChangeLog index d848dc8..574464a 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,12 @@ +2018-06-02 Keith Miller + + 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 Unreviewed, rolling out r232421. diff --git a/Tools/Scripts/run-jsc b/Tools/Scripts/run-jsc index 69aff13..26374bc 100755 --- a/Tools/Scripts/run-jsc +++ b/Tools/Scripts/run-jsc @@ -50,9 +50,9 @@ setConfiguration(); 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();